Skip to content

Instantly share code, notes, and snippets.

@dei-biz
Created March 14, 2017 10:11
Show Gist options
  • Select an option

  • Save dei-biz/1a648974ce7ddececcbebb570f043598 to your computer and use it in GitHub Desktop.

Select an option

Save dei-biz/1a648974ce7ddececcbebb570f043598 to your computer and use it in GitHub Desktop.
{
"query" : {
"bool" : {
"should" : [{
"multi_match" : {
"type" : "best_fields",
"fields" : ["campo_importante^3", "campo_menos_importante^2", "campo_poco_importante"],
"query" : "QUERY"
}
}, {
"flt" : {
"like_text" : "QUERY"
}
}
]
}
},
"filter" : {
"and" : [{
"exists" : {
"field" : "campo_necesario"
}
}
]
},
"sort" : {
"_score" : {
"order" : "desc"
}
},
"size" : 100,
"from" : 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment