{
"bool":{
"query":{
"must":{
'match': { 'tag': {
"query": "foo baz, bar",
"type":"boolean"
}
}
}
}
}
}
The problem I face is that foo baz are not treated as one and I get hits for foo as well as baz as well as bar and as well as foo baz but I want results only for 'foo baz' and bar
please anybody help