Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. {
  2. "from" : 0,
  3. "size" : 10, "query" : {
  4. "filtered" : {
  5. "query" : {
  6. "match_all" : { }
  7. },
  8. "filter" : {
  9. "and" : {
  10. "filters" : [ {
  11. "nested" : {
  12. "filter" : {
  13. "and" : {
  14. "filters" : [ {
  15. "terms" : {
  16. "portals.platform" : [ "6" ]
  17. }
  18. }, {
  19. "terms" : {
  20. "portals.isActive" : [ true ]
  21. }
  22. } ]
  23. }
  24. },
  25. "path" : "portals"
  26. }
  27. }, {
  28. "term" : {
  29. "language.attribute" : "en"
  30. }
  31. } ]
  32. }
  33. }
  34. }
  35. },
  36. "_source" : {
  37. "includes" : [ ],
  38. "excludes" : [ "related*Ids" ]
  39. },
  40. "sort" : [ {
  41. "name.attribute" : {
  42. "order" : "asc"
  43. }
  44. } ],
  45. "aggregations" : {
  46. "byCountry" : {
  47. "terms" : {
  48. "field" : "country.isoCountryCode.attribute",
  49. "size" : 0
  50. }
  51. },
  52. "bySector" : {
  53. "terms" : {
  54. "script" : "doc['simpleSectors.name.attribute'].value+'|'+ doc['simpleSectors.id'].value",
  55. "size" : 0
  56. }
  57. }
  58. }
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement