curl -XGET http://localhost:9200/index/type/_search -d '{
"query": {
"match_all": {}
},
"aggs": {
"group_by_types": {
"terms": {
"field": "type"
},
"aggs": {
"top_hits_in_group": {
"top_hits": {
"size": 10
}
}
}
}
}
}'