Guest User

Untitled

a guest
Sep 25th, 2015
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. GET /idx/mytype/_search
  2. {
  3. "size" : 0,
  4. "query" : {
  5. "bool" : { }
  6. },
  7. "aggregations" : {
  8. "myAgg" : {
  9. "filter" : {
  10. "nested" : {
  11. "query" : {
  12. "query_string" : {
  13. "query" : "n1.category:(\"c1\")"
  14. }
  15. },
  16. "path" : "n1"
  17. }
  18. },
  19. "aggregations" : {
  20. "sub_nested" : {
  21. "nested" : {
  22. "path" : "n1"
  23. },
  24. "aggregations" : {
  25. "sub" : {
  26. "terms" : {
  27. "field" : "n1.category"
  28. },
  29. "aggregations" : {
  30. "sub2_nested" : {
  31. "nested" : {
  32. "path" : "n1"
  33. },
  34. "aggregations" : {
  35. "sub2" : {
  36. "terms" : {
  37. "field" : "n1.title"
  38. }
  39. }
  40. }
  41. }
  42. }
  43. }
  44. }
  45. }
  46. }
  47. }
  48. }
  49. }
Advertisement
Add Comment
Please, Sign In to add comment