Parent-Child Searching
curl 'localhost:9200/politics/party/_search?pretty=true' -d '{ "query": { "has_child": { "type": "supporter", "query": { "term": { "dob": "1970-10-24" } } } } }'curl 'localhost:9200/politics/supporter/_search?pretty=true' -d '{ "query": { "has_parent": { "type": "party", "query": { "match": { "name": "The Heartless" } } } }'
Last updated