Hi
I search to add a filter in ElasticSearch.
When I search ????, the filter doesn't
{
"filtered": {
"query": {
"match": { "MACOLONNE": "????" }
}
}
When I add a filter to find the string ???? it does not fuction. The character "?" seems to be a special character. I tried to escape characters with a \ , but I have an error.
Do you know I can do that ?
I have a second question, I need to search not null query.
Exemple: (I had NOT, but it is not authorized:
{
"filtered": {
"query": {
"match NOT ": { "MACOLONNE": "" }
}
}
Thank you!