Skip to content

Instantly share code, notes, and snippets.

@kanapuli
Created January 1, 2018 01:10
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 kanapuli/344acb228a709b2d5fe5189ee9606c4a to your computer and use it in GitHub Desktop.
Save kanapuli/344acb228a709b2d5fe5189ee9606c4a to your computer and use it in GitHub Desktop.
//AND operation syntax
{
"query":{
"bool":{
"must":[]
}
}
}
//OR operation syntax
{
"query":{
"bool":{
"should":[]
}
}
}
//NOT operation syntax
{
"query":{
"bool":{
"must_not":[]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment