Skip to content

Instantly share code, notes, and snippets.

@ramlev
Created May 7, 2015 09:29
Show Gist options
  • Save ramlev/03d8af05a1fc3b1c7477 to your computer and use it in GitHub Desktop.
Save ramlev/03d8af05a1fc3b1c7477 to your computer and use it in GitHub Desktop.
{
"query": {
"filtered": {
"query": {
"multi_match": {
"query": "something",
"fields": ["title", "url", "description"]
}
},
"filter": {
"bool": {
"must": {
"missing": {
"field": "marked_for_deletion"
}
}
}
}
}
},
"boosting": {
"positive": {
"filter": {
"bool": {
"must": {
"exists": {
"field": "traded_as"
}
}
}
}
},
"negative": {
"filter": {
"bool": {
"must": {
"missing": {
"field": "traded_as"
}
}
}
}
},
"negative_boost": 1.0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment