I have this query:
{
"bool":{
"must":[
{
"multi_match":{
"query":"foo",
"fields":[
"title",
"body"
]
}
}
]
}
}
and I want to exclude results that have the term mentioned 1 times.
I have already tried more like this api without any luck. I have also looked to term vector but it also did not work.