Created
August 8, 2019 13:03
-
-
Save kartikchauhan/375550e27102bed5b2dc23ba032c17c1 to your computer and use it in GitHub Desktop.
Elasticsearch Query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"size": 0, | |
"query": { | |
"bool": { | |
"must": [ | |
{ | |
"nested": { | |
"path": "doc.parentKey", | |
"query": { | |
"bool": { | |
"must": [ | |
{ | |
"term": { | |
"doc.parentKey.name.keyword": "63bb04a3eb41417e8d0e61e074293581" | |
} | |
} | |
] | |
} | |
} | |
} | |
}, | |
{ | |
"term": { | |
"doc.sa.keyword": "0aa7b933-eab1-4939-b4d2-38c2d0602cba" | |
} | |
} | |
] | |
} | |
}, | |
"aggs": { | |
"parentKey": { | |
"nested": { | |
"path": "doc.parentKey" | |
}, | |
"aggs": { | |
"response": { | |
"aggs": { | |
"name": { | |
"terms": { | |
"field": "doc.parentKey.name.keyword" | |
}, | |
"aggs": { | |
"value": { | |
"terms": { | |
"field": "doc.parentKey.value.keyword" | |
} | |
} | |
} | |
} | |
}, | |
"filter": { | |
"term": { | |
"doc.parentKey.name.keyword": "63bb04a3eb41417e8d0e61e074293581" | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment