for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the ONGR package.
*
* (c) NFQ Technologies UAB <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace ONGR\ElasticsearchDSL\Query\TermLevel;
use ONGR\ElasticsearchDSL\BuilderInterface;
use ONGR\ElasticsearchDSL\ParametersTrait;
/**
* Represents Elasticsearch "term" query.
* @link https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-term-query.html
class TermQuery implements BuilderInterface
{
use ParametersTrait;
* @var string
private $field;
private $value;
* @param string $field
* @param string $value
* @param array $parameters
public function __construct($field, $value, array $parameters = [])
$this->field = $field;
$this->value = $value;
$this->setParameters($parameters);
}
* {@inheritdoc}
public function getType()
return 'term';
public function toArray()
$query = $this->processArray();
if (empty($query)) {
$query = $this->value;
} else {
$query['value'] = $this->value;
$output = [
$this->field => $query,
];
return [$this->getType() => $output];