Skip to content

Instantly share code, notes, and snippets.

@PirosB3
Created November 12, 2015 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PirosB3/523fd62416dc3ad7e9a1 to your computer and use it in GitHub Desktop.
Save PirosB3/523fd62416dc3ad7e9a1 to your computer and use it in GitHub Desktop.
# 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