"query": {
"multi_match": {
"query": "how to do business process",
"operator": "and",
"fields": [
"title.stemmed_with_stopwords_with_synonyms",
"title.stemmed_no_stopwords"
],
"cutoff_frequency": 0.01
}
}
I was trying to make a search query to search for the above query but, instead of returning results which have business process it's giving results for 'how' more than the former. Is there a way to solve this?