Created
May 7, 2015 09:29
-
-
Save ramlev/03d8af05a1fc3b1c7477 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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