Advertisement
Guest User

Untitled

a guest
May 6th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. "mappings": {
  2. "products": {
  3. "_all": {
  4. "enabled": true
  5. },
  6. "properties": {
  7. "title": {
  8. "type": "string"
  9. },
  10. "categories": {
  11. "type":"nested",
  12. "properties": {
  13. "type": {
  14. "type": "string",
  15. "index": "not_analyzed"
  16. },
  17. "name": {
  18. "type": "string",
  19. "index": "not_analyzed"
  20. }
  21. }
  22. }
  23. }
  24. }
  25. }
  26.  
  27. {
  28. "query":{
  29. "multi_match": {
  30. "query": "Sound",
  31. "fields": [
  32. "title"
  33. ]
  34. }
  35. },
  36. "aggs":{
  37. "Applications": {
  38. "nested": {
  39. "path": "categories"
  40. },
  41. "aggs": {
  42. "meta": {
  43. "terms": {
  44. "field": "categories.type"
  45. },
  46. "aggs": {
  47. "name": {
  48. "terms": {
  49. "field": "categories.name"
  50. }
  51. }
  52. }
  53. }
  54. }
  55. }
  56. }
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement