Querying special characters and symbols for nested and not nested fields

I have these symbols CF7CB807

we have successfully persisted data for those but we we're having problems when retrieving those data for both nested and not nested fields. and also with wildcard

Can you guys help me how can I construct correct elasticsearch query with this.

unable to retrieve data example
(not nested) value = * sample#test#data *
(not nested) = sample#test#data
(nested) = sample#test#data
(nested) = * sample#test#data *

Mapping:
"normalizer": {
"testnormalizer": {
"type": "custom",
"char_filter": ,
"filter": [
"lowercase",
"asciifolding"
]
}
}

Nested fields mapping:
"nestedflds": {
"type": "nested",
"properties": {
"attributeName": {
"type": "keyword",
"normalizer": "testnormalizer"
},
"attributeValue": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword"
}
},
"fielddata": true
}
}
}

Not nested mapping:
"testId": {
"type": "keyword",
"normalizer": "testnormalizer"
},

Anyone, please help

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.