Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. GET/my_index/_search
  2. {
  3. "_source": false,
  4. "aggs": {
  5. "global": {
  6. "global": {
  7.  
  8. },
  9. "aggs": {
  10. "all_products": {
  11. "nested": {
  12. "path": "simple"
  13. },
  14. "aggs": {
  15. "filter_top": {
  16. "filter": {
  17. "bool": {
  18. "must": [
  19. {
  20. "match": {
  21. "simple.compound_words": {
  22. "query": "tisch",
  23. "operator": "AND"
  24. }
  25. }
  26. }
  27. ]
  28. }
  29. },
  30. "aggs": {
  31. "filter_merged": {
  32. "aggs": {
  33. "filter": {
  34. "bool": {
  35. "must": [
  36. {
  37. "terms": {
  38. "simple.filter_color": [
  39. "green",
  40. "red"
  41. ]
  42. }
  43. }
  44. ]
  45. }
  46. },
  47. "aggs": {
  48. "filter_category": {
  49. "terms": {
  50. "field": "simple.filter_category"
  51. }
  52. }
  53. }
  54. }
  55. },
  56. "filter_color": {
  57. "terms": {
  58. "field": "simple.filter_color"
  59. }
  60. }
  61. }
  62. }
  63. }
  64. }
  65. }
  66. }
  67. }
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement