Guest User

Untitled

a guest
Oct 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. GET /_search
  2. {
  3. "query": {...},
  4. "aggs" : {
  5. "categories" : {
  6. "terms" : { "field" : "category_name" }
  7. }
  8. }
  9. }
  10.  
  11. {
  12. ...
  13. "aggregations" : {
  14. "categories" : {
  15. "doc_count_error_upper_bound": 0,
  16. "sum_other_doc_count": 0,
  17. "buckets" : [
  18. {
  19. "key" : "Mobile phones",
  20. "doc_count" : 6
  21. },
  22. {
  23. "key" : "Batteries for phones",
  24. "doc_count" : 3
  25. },
  26. {
  27. "key" : "Cases for phones",
  28. "doc_count" : 2
  29. }
  30. ]
  31. }
  32. }
  33. }
Add Comment
Please, Sign In to add comment