I have a index with india language, below is the map and some data
when i try to seach by http://localhost:9200/community/user/_search?q=name:मई की न्यूज़, everything is fine. I can get the data which i want
but, when i want query name by wildcard, like curl --request GET \ --url http://localhost:9200/community/user/_search \ --header 'Content-Type: application/json' \ --header 'Postman-Token: 9f976f3b-609f-40c2-93c1-c333bbeb4e77' \ --header 'cache-control: no-cache' \ --data '{"query": {"bool": {"must": {"wildcard": {"name": "*मई की न्यूज़*"}}}}}'
, I got zero records.
but, if i replace मई की न्यूज़
to 'abc', I can get data again
somebody can helper?