Created
February 15, 2019 19:01
-
-
Save Streek/9f5953907a359a9478bee8e1ec4d8772 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": { | |
"bool": { | |
"must": [ | |
{ | |
"multi_match": { | |
"query": "allbound", | |
"fields": [ | |
"position.company_name^5", | |
"position.company_name.keyword^10" | |
], | |
"type": "most_fields", | |
"fuzziness": "AUTO" | |
} | |
}, | |
{ | |
"multi_match": { | |
"query": "sales", | |
"fields": [ | |
"position.title", | |
"position.title.keyword^2" | |
], | |
"type": "most_fields", | |
"fuzziness": "AUTO" | |
} | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment