Skip to content
Snippets Groups Projects
Commit 49dc086a authored by Aivaras Gotovskis's avatar Aivaras Gotovskis
Browse files

Add has parent filter doc.

parent 82ede7e9
No related branches found
No related tags found
No related merge requests found
# Has Parent Filter
> More info about has parent filter is in the [official elasticsearch docs][1]
The has parent filter accepts a query and a parent type.
The query is executed in the parent document space, which is specified by the parent type.
This filter returns child documents which associated parents have matched.
## Simple example
{
"has_child" : {
"type" : "blog_tag",
"query" : {
"term" : {
"tag" : "something"
}
}
}
}
```
And now the query via DSL:
```php
$termQuery = new TermQuery('tag', 'something');
$hasParentFilter = new HasParentFilter(
'blog',
$termQuery
);
$search = new Search();
$search->addFilter($hasParentFilter);
$queryArray = $search->toArray();
```
[1]: https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-has-parent-filter.html
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment