I am pretty new to elasticsearch and just need some clarification: Can we define a analyzer while querying the search server. I tried it with the \"text\" and \"field\" query an
This syntax worked for me:
GET /_search { "query": { "match_phrase": { "controller": { "analyzer": "keyword", "query": "api/v2/test" } } } }
Find more details in the documentation.