Cake\ElasticSearch\FilterBuilder::gte PHP 메소드

gte() 공개 메소드

Returns a Range filter object setup to filter documents having the field greater than or equal the provided value.
또한 보기: 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.
리턴 Elastica\Filter\Range
    public function gte($field, $value)
    {
        return $this->range($field, ['gte' => $value]);
    }