Guest User

Untitled

a guest
Jun 21st, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. {
  2. "query": {
  3. "bool": {
  4. "must": [
  5. {
  6. "bool": {
  7. "should": [
  8. {
  9. "terms": {
  10. "search_field": [
  11. "search_key"
  12. ]
  13. }
  14. }
  15. ]
  16. }
  17. },
  18. "nested": {
  19. "path": "defined_path", //defined path is mapped nested
  20. "query": {
  21. "bool": {
  22. "must": [
  23. {
  24. "exists": {
  25. "field": "defined_path.some_field"
  26. }
  27. }
  28. ]
  29. }
  30. }
  31. }
  32. ]
  33. }
  34. }
  35. }
Add Comment
Please, Sign In to add comment