I have setup Elastic Search 5.x & Kibana on my local development environment, and have setup the indices I want to have results return exact search term (so only return results where that exact search term/string is found.
How can I adjust this to perform an exact search so "facebook advice" would be valid, but "advice facebook" would not be found
My existing Kibana query is as follows :
{
"query": {
"bool": {
"should": [
{
"match": {
"text": "facebook advice"
}
},
{
"match": {
"profile": "facebook advice"
}
}
],
"minimum_should_match": 1,
"filter": {
"term": {
"accountid": "15"
}
}
}
}
}