Skip to content

Instantly share code, notes, and snippets.

@royib
Last active October 28, 2019 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 royib/b9c00fc5225c23c46817d2a25194d9c9 to your computer and use it in GitHub Desktop.
Save royib/b9c00fc5225c23c46817d2a25194d9c9 to your computer and use it in GitHub Desktop.
Querying Elasticsearch- Compound query
{
"query": {
"bool": {
"must": {
"match": {
"mail_body": "Jeff BRidges"
}
},
"filter": {
"term": {
"mail_from": "emma@somemail.com"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment