Guest User

Untitled

a guest
Sep 24th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. GET users/_search
  2. {
  3. "query": {
  4. "bool": {
  5. "must": {
  6. "match": {
  7. "user_name": "alice"
  8. }
  9. },
  10. "filter": {
  11. "bool": {
  12. "should": [
  13. {"match": {"country": "italy"}},
  14. {"match": {"country": "france"}}
  15. ]
  16. }
  17. }
  18. }
  19. }
  20. }
Add Comment
Please, Sign In to add comment