Skip to content

Instantly share code, notes, and snippets.

@loren
Created October 29, 2014 15:17
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 loren/a74438e4ea4284382acd to your computer and use it in GitHub Desktop.
Save loren/a74438e4ea4284382acd to your computer and use it in GitHub Desktop.
Top image hits from each album
{
"aggs": {
"album_agg": {
"terms": {
"field": "album",
"order": {
"top_score": "desc"
}
},
"aggs": {
"top_image_hits": {
"top_hits": {
"size": 1
}
},
"top_score": {
"max": {
"script": "_doc.score"
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment