When searching document by title and I using sort by _score, the results are good and document matched with the search keyword.
But my document has the score of its own. and when I using multiple sorts ( qualityScore first and _score of elastics second). the results show qualityScore high first but title matched with search keyword not good.
how can I combine _score more than one condition?
Anyone have an idea please help me. Thank advance.
This is my query
GET member-recipes/_search
{
"sort": [
{
"qualityScore": {
"order": "desc"
}
},
"_score"
],
"query": {
"bool": {
"must": [
{ "match": {"title": "21-Day-Fix-Instant-Pot-Chicken-Marsala-Stove-top-896247"}}
]
}
}
}