Skip to content

Instantly share code, notes, and snippets.

@selcukusta
Created December 30, 2017 23:20
Show Gist options
  • Select an option

  • Save selcukusta/176ea37222beb9453f1052eab6a9f591 to your computer and use it in GitHub Desktop.

Select an option

Save selcukusta/176ea37222beb9453f1052eab6a9f591 to your computer and use it in GitHub Desktop.
curl -X POST \
http://localhost:9200/shopping_index/_search \
-H 'Cache-Control: no-cache' \
-H 'Content-Type: application/json' \
-d '{
"aggs": {
"categories": {
"terms": {
"field": "CategoryId"
}
}
},
"post_filter": {
"term": {
"CategoryId": 3
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment