Advertisement
miketopper

Untitled

Aug 5th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. GET /catalog_data/book/_search?routing=1&pretty=1
  2. {
  3. "query": {
  4. "filtered": {
  5. "filter": {
  6. "term": {
  7. "usernum": "1"
  8. }
  9. },
  10. "query": {
  11. "match": {
  12. "_all": {
  13. "query": "locke",
  14. "operator": "and"
  15. }
  16. }
  17. }
  18. }
  19. },
  20. "aggs": {
  21. "collections": {
  22. "terms": {
  23. "field": "collections",
  24. "size": 10
  25. }
  26. },
  27. "format": {
  28. "terms": {
  29. "field": "format",
  30. "size": 10
  31. }
  32. },
  33. "date": {
  34. "terms": {
  35. "field": "date",
  36. "size": 10
  37. }
  38. }
  39. }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement