Guest User

Untitled

a guest
Nov 12th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. [
  2. {
  3. "admin": {
  4. "ids": {
  5. "batchId": "xxx"
  6. },
  7. "orgId": "yyy"
  8. },
  9. "objectId": "abc"
  10. },
  11. {
  12. "admin": {
  13. "ids": {
  14. "batchId": "xxy"
  15. },
  16. "orgId": "yyy"
  17. },
  18. "objectId": "abcd"
  19. }
  20. ]
  21.  
  22. {
  23. "org" : "yyy",
  24. groupBatches : [
  25. {
  26. "batchID" : "xxx"
  27. },
  28. {
  29. "batchID" : "xxy"
  30. }
  31. ]
  32. }
  33.  
  34. {
  35. "_source": [ "objectId", "admin.orgId", "admin.ids.batchId"],
  36. "query" : {
  37. "nested": {
  38. "path": "admin",
  39. "query": {
  40. "match": {"admin.orgId": "xxx"}
  41. }
  42. }
  43. },
  44. "aggs" : {
  45. "groupBatches" : {
  46. "nested": {
  47. "path": "admin"
  48. },
  49. "aggs" : {
  50. "batches" : {
  51. "terms" : {"field" : "admin.ids.batchId"}
  52. }
  53. }
  54. }
  55. }
  56. }
Add Comment
Please, Sign In to add comment