Skip to content

Instantly share code, notes, and snippets.

@prashanttct07
Last active April 18, 2019 12:28
Show Gist options
  • Save prashanttct07/1e74990abf2fdd480140c0fad0d3adb6 to your computer and use it in GitHub Desktop.
Save prashanttct07/1e74990abf2fdd480140c0fad0d3adb6 to your computer and use it in GitHub Desktop.
Main Query with category filter
{
"sort": [
"_score",
{
"catalog.unitPrice": "asc"
}
],
"query": {
"bool": {
"should": [
{
"multi_match": {
"query": "Gloves small powder free",
"type": "phrase_prefix",
"fields": [
"catalog.itemDescription",
"catalog.productName",
"catalog.manufacturerName",
"catalog.productDescription"
],
"boost": 5
}
},
{
"multi_match": {
"query": "Gloves small powder free",
"type": "phrase",
"fields": [
"catalog.itemDescription",
"catalog.productName",
"catalog.manufacturerName",
"catalog.productDescription"
],
"slop": 3
}
},
{
"multi_match": {
"query": "Gloves small powder free",
"type": "best_fields",
"fields": [
"catalog.itemDescription",
"catalog.productName",
"catalog.manufacturerName",
"catalog.productDescription"
]
}
}
],
"filter": {
"multi_match": {
"query": "physical",
"fields": [
"catalog.categoryPathName"
]
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment