Skip to content

Instantly share code, notes, and snippets.

@svsh227
Created December 27, 2019 05:17
Show Gist options
  • Save svsh227/29d6af9a1bda33ab356a49841c5ad46f to your computer and use it in GitHub Desktop.
Save svsh227/29d6af9a1bda33ab356a49841c5ad46f to your computer and use it in GitHub Desktop.
ntegrate Elasticsearch With Node.js
{
"query": { //1
"bool": { //2
"must": [
{ "match":{"address":"Street"}} //3
],
"filter": [ //4
{ "term":{"gender":"f"}}, //5
{ "range": { "age": { "gte": 25 }}} //6
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment