Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.60 KB | None | 0 0
  1. ## Mapping
  2. "categories": {
  3.   "type": "nested",
  4.   "properties": {
  5.     "id": {
  6.       "type": "long"
  7.     },
  8.     "name": {
  9.       "type": "keyword"
  10.     }
  11.   }
  12. }
  13. ## Search
  14. GET development_tasks_index/_search
  15. {
  16.   "query": {
  17.     "bool": {
  18.       "must": {
  19.         "match_all": {}
  20.       }
  21.     }
  22.   },
  23.   "aggs": {
  24.     "categories": {
  25.       "nested": {
  26.         "path": "categories"
  27.       }
  28.     }
  29.   }
  30. }
  31.  
  32. ## result
  33. "aggregations": {
  34.   "categories": {
  35.     "doc_count": 4
  36.   }
  37. }
  38.  
  39. ## Expectation
  40. "aggregations": {
  41.   "categories": {
  42.     "doc_count": 4,
  43.     "id": 11,
  44.     "name": "Category ABC"
  45.   }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement