Skip to content

Instantly share code, notes, and snippets.

@ShubhanjanMedhi-dev
Created July 21, 2023 11:07
Show Gist options
  • Save ShubhanjanMedhi-dev/05ac19d84736098863984601c2c0f246 to your computer and use it in GitHub Desktop.
Save ShubhanjanMedhi-dev/05ac19d84736098863984601c2c0f246 to your computer and use it in GitHub Desktop.
GET/bank /_search
{
"query": {
"bool": {
"must": [
{
"bool": {
"should": [
{ "match": { "address_name": "lane" } },
{ "match": { "address_name": "street" } }
]
}
},
{
"range": {
"balance": {
"gte": 20000,
"lte": 30000
}
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment