Created
November 12, 2015 09:40
-
-
Save PirosB3/523fd62416dc3ad7e9a1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Let's combine some queries together! | |
GET /bank/account/_search | |
{ | |
"query": { | |
"bool": { | |
"must": [{ | |
"match": { | |
"address": "court" | |
} | |
}], | |
"should": [{ | |
"range": { | |
"age": { | |
"lte": 24 | |
} | |
} | |
}] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment