Created
April 27, 2019 11:52
-
-
Save prashanttct07/2e92f6d4397873fc5146916acce185dc 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
POST catalogstagingv4/_search | |
{ | |
"size": 50, | |
"_source": [ | |
"catalog.itemDescription", | |
"catalog.productName", | |
"catalog.manufacturerName", | |
"catalog.productDescription", | |
"catalog.categoryPathName", | |
"catalog.pkg" | |
], | |
"sort": [ | |
"_score", | |
{ | |
"catalog.unitPrice": "asc" | |
} | |
], | |
"query": { | |
"bool": { | |
"must_not": [ | |
{ | |
"multi_match": { | |
"query": "small", | |
"type": "best_fields", | |
"fields": [ | |
"catalog.itemDescription", | |
"catalog.productName", | |
"catalog.manufacturerName", | |
"catalog.productDescription" | |
] | |
} | |
} | |
], | |
"should": [ | |
{ | |
"multi_match": { | |
"query": "Gloves powder free nitrile", | |
"type": "phrase_prefix", | |
"fields": [ | |
"sizes.whitespace" | |
], | |
"boost": 10 | |
} | |
}, | |
{ | |
"multi_match": { | |
"query": "Gloves powder free", | |
"type": "phrase", | |
"fields": [ | |
"sizes.whitespace" | |
], | |
"slop": 3, | |
"boost": 8 | |
} | |
}, | |
{ | |
"multi_match": { | |
"query": "Gloves powder free", | |
"type": "best_fields", | |
"fields": [ | |
"sizes.whitespace" | |
], | |
"boost": 8 | |
} | |
}, | |
{ | |
"multi_match": { | |
"query": "Gloves powder free", | |
"type": "phrase_prefix", | |
"fields": [ | |
"catalog.itemDescription", | |
"catalog.productName", | |
"catalog.manufacturerName", | |
"catalog.productDescription" | |
], | |
"boost": 5 | |
} | |
}, | |
{ | |
"multi_match": { | |
"query": "Gloves powder free", | |
"type": "phrase", | |
"fields": [ | |
"catalog.itemDescription", | |
"catalog.productName", | |
"catalog.manufacturerName", | |
"catalog.productDescription" | |
], | |
"slop": 3 | |
} | |
}, | |
{ | |
"multi_match": { | |
"query": "Gloves powder free", | |
"type": "best_fields", | |
"fields": [ | |
"catalog.itemDescription", | |
"catalog.productName", | |
"catalog.manufacturerName", | |
"catalog.productDescription" | |
] | |
} | |
} | |
], | |
"filter": [ | |
{ | |
"terms": { | |
"catalog.manufacturerName.keyword": [ | |
"Ansell" | |
] | |
} | |
}, | |
{ | |
"terms": { | |
"catalog.pkg.keyword": [ | |
"CS" | |
] | |
} | |
}, | |
{ | |
"multi_match": { | |
"query": "Gloves>Nitrile/Synthetic>Exam/Non-sterile", | |
"fields": [ | |
"catalog.categoryPathName" | |
] | |
} | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment