Skip to content

Instantly share code, notes, and snippets.

@cphoover
Created October 20, 2014 19:03
Show Gist options
  • Save cphoover/d7e8e6200d34a195645d to your computer and use it in GitHub Desktop.
Save cphoover/d7e8e6200d34a195645d to your computer and use it in GitHub Desktop.
Query =
GET /products/product/_search
{
"query": {
"match_all" : {}
},
"aggs" : {
"group_by_scode" : {
"terms" : {
"field" : "SCODE"
}
}
}
}
Results =
"hits" : …
"aggregations": {
"group_by_scode": {
"buckets": [
{
"key": 1240069,
"doc_count": 5
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment