I'm interested in performing a Full-text search on an analyzed field in my index. I Sense it looks like this:
GET /sample/_search/
{
"explain":false,
"query": {
"match": {
"MerchKeyBest.merchant_name": {
"query": "jones sports",
"operator": "and"
}
}
}
}
As I undertand it, the query terms will be run through the search query analyzer, then be matched against the analyzer tokens created during indexing with the index analyzer.
I don't seem to get the same results from Kibana Discover leading me to wonder if a term search is being done over a match search.
Kibana search:
MerchKeyBest.merchant_name: "jones" AND "sports"