Skip to content

Instantly share code, notes, and snippets.

@dr0i
Created February 7, 2017 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dr0i/e970054262bb8efa86035683fa395fa5 to your computer and use it in GitHub Desktop.
Save dr0i/e970054262bb8efa86035683fa395fa5 to your computer and use it in GitHub Desktop.
elasticsearch child aggregation: item owner
curl -XGET 'http://gaia.hbz-nrw.de:9200/resources/_search?pretty=true' -d '
{
"query" : {
"filtered" : {
"query" : {
"query_string" : {
"query" : "köln"
}
}
}
}
,
"aggs": {
"items": {
"children": {
"type" : "item"·
},
"aggs": {
"top-isil": {
"terms": {
"field": "owner.id",
"size": 50
}
}
}
}
}
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment