Cake\ElasticSearch\FilterBuilder::exists PHP Метод

exists() публичный Метод

Returns an Exists filter object setup to filter documents having a property present or not set to null.
См. также: http://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-exists-filter.html
public exists ( string $field ) : Elastica\Filter\Exists
$field string The field to check for existance.
Результат Elastica\Filter\Exists
    public function exists($field)
    {
        return new Filter\Exists($field);
    }