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

Add ids query doc.

parent 90610014
No related branches found
No related tags found
No related merge requests found
# Ids Query
> More info about ids query is in the [official elasticsearch docs][1]
Filters documents that only have the provided ids.
## Simple example
```JSON
{
"ids" : {
"type" : "my_type",
"values" : ["1", "4", "100"]
}
}
```
In DSL:
```php
$idsQuery = new IdsQuery(['1', '4', '100'], ['type' => 'my_type']);
$search = new Search();
$search->addQuery($idsQuery);
$queryArray = $search->toArray();
```
[1]: https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-ids-query.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