Filter is not working for me even though i'm having matching record with this search term, The search result shows empty hit. Can anyone please help me out.
`GET my_index/my_type2/_search
{
"query": {
"bool": {
"must": {
"multi_match": {
"query": "sample",
"fields": ["Tags"]
}
},
"filter": {
"term": {
"Collection":"collectionTwo"
}
}
}
}
}`