Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add exists query #16

Merged
merged 4 commits into from
Aug 24, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions src/DSL/SearchBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use Illuminate\Database\Eloquent\Model;
use ONGR\ElasticsearchDSL\Query\CommonTermsQuery;
use ONGR\ElasticsearchDSL\Query\ExistsQuery;
use ONGR\ElasticsearchDSL\Query\FuzzyQuery;
use ONGR\ElasticsearchDSL\Query\GeoBoundingBoxQuery;
use ONGR\ElasticsearchDSL\Query\GeoDistanceQuery;
Expand Down Expand Up @@ -303,6 +304,26 @@ public function terms($field, array $terms, array $attributes = [])
return $this;
}

/**
* Add an exists query.
*
* @param string|array $fields
*
* @return $this
*/
public function exists($fields)
{
$fields = is_array($fields) ? $fields : [$fields];

foreach ($fields as $field) {
$query = new ExistsQuery($field);

$this->append($query);
}

return $this;
}

/**
* Add a wildcard query.
*
Expand Down