Skip to content

Instantly share code, notes, and snippets.

@saml
Last active July 29, 2016 21:58
Show Gist options
  • Save saml/6c9827ea3eb4c2775c88a26c83c1f582 to your computer and use it in GitHub Desktop.
Save saml/6c9827ea3eb4c2775c88a26c83c1f582 to your computer and use it in GitHub Desktop.
GET _search
{
"explain": true,
"query": {
"function_score": {
"query": {
"filtered": {
"query": {
"query_string": {
"query": "\"cafe edison\"",
"fields": [
"title^100",
"_all"
]
}
},
"filter": {
"bool": {
"must": [
{"term": {"status": "published"}}
],
"must_not": [
{"term": {"metadata.type": "movie"}},
{"term": {"metadata.type": "festival"}}
]
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment