Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. Raw Elasticsearch result:
  2.  
  3. {
  4. "_shards": {
  5. "failed": 0,
  6. "successful": 5,
  7. "total": 5
  8. },
  9. "hits": {
  10. "hits": [
  11. {
  12. "_id": "...",
  13. "_index": "...",
  14. "_score": null,
  15. "_source": {
  16. "best_title": "...",
  17. "country_codes": {
  18. "f1": [
  19. "AU",
  20. "US"
  21. ]
  22. },
  23. },
  24. "_type": "cluster",
  25. "sort": [
  26. 1422523651820
  27. ]
  28. },
  29. ...
  30.  
  31. Attempted query to match documents with `"US"` in the country codes:
  32.  
  33. {
  34. "query": {
  35. "filtered": {
  36. "filter": {
  37. "and": [
  38. {
  39. "or": [
  40. {
  41. "term": {
  42. "country_codes.f1": "US"
  43. }
  44. }
  45. ]
  46. }
  47. ]
  48. },
  49. "query": {
  50. "query_string": {
  51. "fields": [
  52. "best_title",
  53. ],
  54. "query": "*"
  55. }
  56. }
  57. }
  58. }
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement