Nested Datatype Querying
- The query against nested objects is executed as if the nested documents were indexed independently from the parent document and one from another:
{ "query": { "nested": { "path": "members", "query": { "bool": { "must": [ { "match": { "members.first": "John" }}, { "match": { "members.last": "Smith" }} ] } } } } }
- Additional options available for nested datatype mapping, querying, and aggregation