Hello Atlas team,
Have observed when if there is a ['@','/',' ','-'] char in the attribute filter
query (ex: table-) in Start with/Ends with/contains queries, the Elastic search
query becomes
Start with => "table-"*
Ends with => *"table-"
Contains => *"table-"*
The question is, the * should be outside of double quotes ("table-"*) or with
in double quotes ("table-*")? Elasticsearch is returning all the entitites in
the system if * is outside of the double quotes and it takes very long times
with offset and limit paginations.
We are assuming the * should be with in double quotes.
Please clarify, is this a expected behaviour or a bug
It is very critical for our use case with special chars in the attribute filter
search.
---
Regards,
Sreeni