I have a field with mapping :
{
"type" : "text",
"fields" : {
"keyword" : {
"type" : "keyword",
"ignore_above" : 256
}
}
}
One of the document has value for the above field as "abcdef". What kind of ES query should be used to match this document when searching for "def"?
I have tried match, prefix queries.