Hello Everybody,
I'm looking for a way to get document that have a field which value prefixing a specified string. For a better comprehension, see the following example:
Elasticsearch Document content
CountryCode:33, CountryName:France
CountryCode:34, CountryName:Spain
CountryCode:39, CountryName:France
CountryCode:216, CountryName:Tunisia
CountryCode:212, CountryName:Morocco
A query with "33652729381" will give the line with France as CountryName.
Regards,