Guest User

Untitled

a guest
Dec 16th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. GET /you_path/_search
  2. {
  3. "size": 5,
  4. "_source":["expected_key1","expected_key2"],
  5. "query": {
  6. "bool": {
  7. "must_not": [
  8. {
  9. "term": {
  10. "expected_key": expected_value
  11. }
  12. }
  13. ],
  14. "should": [
  15. {
  16. "term": {
  17. "expected_key": expected_value
  18. }
  19. }
  20. ]
  21. }
  22. }
  23. }
Add Comment
Please, Sign In to add comment