Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.

Nested Query

More info about nested query is in the official elasticsearch docs

Nested query allows to query nested objects / documents (see nested mapping). The query is executed against the nested objects / documents as if they were indexed as separate documents (they are, internally) and resulting in the root parent document (or parent nested mapping).

Simple example

{
    "nested" : {
        "path" : "obj1",
        "score_mode" : "avg",
        "query" : {
            "bool" : {
                "must" : [
                    {
                        "match" : {"obj1.name" : "blue"}
                    },
                    {
                        "range" : {"obj1.count" : {"gt" : 5}}
                    }
                ]
            }
        }
    }
}

In DSL:

$matchQuery = new MatchQuery('obj1.name', 'blue');
$rangeQuery = new RangeQuery('obj1.count', ['gt' => 5]);
$boolQuery = new BoolQuery();
$boolQuery->add($matchQuery);
$boolQuery->add($rangeQuery);

$nestedQuery = new NestedQuery(
    'obj1',
    $boolQuery
);
$nestedQuery->addParameter('score_mode', 'avg');

$search = new Search();
$search->addQuery($nestedQuery);

$queryArray = $search->toArray();