Guest User

Untitled

a guest
Sep 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. {
  2. "_type": "article",
  3. "_source": {
  4. "title": "Article 1",
  5. "locations": [
  6. {
  7. "address": "ES headquarter",
  8. "city": "Berlin"
  9. }
  10. ]
  11. }
  12. }
  13.  
  14. {
  15. "query": {
  16. "filtered": {
  17. "query": {
  18. "match_all": {}
  19. },
  20. "filter": [
  21. {
  22. "type": {
  23. "value": "article"
  24. }
  25. },
  26. {
  27. "bool": {
  28. "must_not": {
  29. "missing": {
  30. "field": "location",
  31. "existence": true,
  32. "null_value": true
  33. }
  34. }
  35. }
  36. }
  37. ]
  38. }
  39. }
  40. }
  41.  
  42. "must_not": {
  43. "missing": {
  44. "field": "locations.address"
  45. }
  46. }
  47.  
  48. "must_not": {
  49. "script": {
  50. "script": "_source.locations.size() > 0"
  51. }
  52. }
  53.  
  54. {
  55. "query":{
  56. "bool":{
  57. "must_not":[
  58. {
  59. "exists":{
  60. "field":"tags"
  61. }
  62. }
  63. ]
  64. }
  65. }
  66. }
Add Comment
Please, Sign In to add comment