Skip to content

Instantly share code, notes, and snippets.

@Streek
Created February 15, 2019 19:01
Show Gist options
  • Save Streek/9f5953907a359a9478bee8e1ec4d8772 to your computer and use it in GitHub Desktop.
Save Streek/9f5953907a359a9478bee8e1ec4d8772 to your computer and use it in GitHub Desktop.
{
"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