Skip to content

Instantly share code, notes, and snippets.

@TwP
Created September 13, 2012 00:09
Show Gist options
  • Save TwP/3710911 to your computer and use it in GitHub Desktop.
Save TwP/3710911 to your computer and use it in GitHub Desktop.
ElasticSearch multi-term query
{ "query" : {
"bool" : {
"should" : [
{ "term": { "user_ids": 2 }},
{ "term": { "content": "foobar" }}
],
"minimum_should_match": 1
}
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment