I have to documents with field value like
"abc-def"
"def-abc"
"abc"
I want to just search for docs that start with "abc-" but including the - in the search doesnt work and just search for "abc" will not work as it returns the 3 docs.
I have tried "query": "field:abc" and "field:abc-", is there any way to match online ones that start with "abc-"?