Files
Phraseanet/lib/Alchemy/Phrasea/SearchEngine/Elastic/AST/AndExpression.php
Mathieu Darse dc2c9f8c7f Refactor thesaurus query build
- Look for text nodes and infer the concepts behind term using thesaurus
- Use value objects for thesaurus terms and concepts
- Pass a QueryContext holding allowed fields and locales informations when building the Elasticsearch query
- Change type hinting and name of query building method on nodes
- Remove unused method Node#isFullTextOnly()
- Move getFieldsStructure from RecordIndexer to RecordHelper for reusing field structure in SearchEngine
2015-01-20 15:05:15 +01:00

23 lines
499 B
PHP

<?php
namespace Alchemy\Phrasea\SearchEngine\Elastic\AST;
use Alchemy\Phrasea\SearchEngine\Elastic\Search\QueryContext;
class AndExpression extends BinaryOperator
{
protected $operator = 'AND';
public function buildQuery(QueryContext $context)
{
$left = $this->left->buildQuery($context);
$right = $this->right->buildQuery($context);
return array(
'bool' => array(
'must' => array($left, $right)
)
);
}
}