Need full-text search for documents in Elasticsearch. I make the following request:
{ "query":{ "match":{ "_all":"Дмитр" } } } Finds nothing, but when I fully register the name
{ "query":{ "match":{ "_all":"Дмитрий" } } } Finds all the entries that have this name.
The request is sent by the POST method to the url: http://127.0.0.1/myindex/people/_search