Hi,
i am having some issue with multi_match field highlight, here my scenorio
Query
{
"multi_match": {
"query": "quick brown fox",
"fields": [ "title", "body" ],
"operator":"and",
"type": "best_fields" # default
}
}
Hightlight type : Plain
Data
title : quick brown
body : quick brown fox
Problem
It needs to highlight only "body" which has all words but its highlighting "quick brown" words also in title also.