Cake\ElasticSearch\FilterBuilder::gte PHP Méthode

gte() public méthode

Returns a Range filter object setup to filter documents having the field greater than or equal the provided value.
See also: http://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-range-filter.html
public gte ( string $field, mixed $value ) : Elastica\Filter\Range
$field string The field to filter by.
$value mixed The value to compare with.
Résultat Elastica\Filter\Range
    public function gte($field, $value)
    {
        return $this->range($field, ['gte' => $value]);
    }