In order to search for the exact string : "AGA>23/180@20210212" I've tried the below match queries :
{"query": { "match" : {"mid": "AGA>23/180@20210212"}}}
{"query": {"bool": { "must" : [ { "match" : { "mid": "AGA>23/180@23221"}}]}}}
elastic search matches on "AGA>135/880@20210212" & "AGA>212/880@20210212"
So it seems the values 135 & 212 are treated like wildcards.
If I use query instead: {"query": { "term" : {"mid": "AGA>23/180@20210212"}}}
then 0 results are returned.
How to search for value "AGA>23/180@20210212" only ?