I have two queries.
{'bool':
{'must':
{ 'terms': 'metadata.loc':['ten','twenty']}
{ 'terms': 'metadata.doc':['prince','queen']}
}
{'should':
{ 'match': 'text':'kingdom of dreams'}
}
},
{'highlight':
{'text':
{'type':fvh,
'matched_fields':['metadata.doc','text']
}
}
}
There are two questions ?
Why the documents with should query match are getting highlighted whereas documents with only must term match are not getting highlighted.
Is there any way to mention highlight condition specific to term query above ?
This means highlight condition for { 'terms': 'metadata.loc':['ten','twenty']}
and a seperate highlight condition for { 'terms': 'metadata.doc':['prince','queen']}