Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kartikchauhan/375550e27102bed5b2dc23ba032c17c1 to your computer and use it in GitHub Desktop.
Save kartikchauhan/375550e27102bed5b2dc23ba032c17c1 to your computer and use it in GitHub Desktop.
Elasticsearch Query
{
"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