I'm new in elastic search...can anyone help to create a query that will search multiple values with ignoring case.
if I use lower case then below search query is working properly but when I use UPPER case it is not returning data so do I have to convert into lower 1st or is there any way to search by ignoring the case?
> { > "query": { > "constant_score": { > "filter": { > "bool": { > "must": [ > { > "terms": { > "shape": [ > "ROUND", > "HEART" > ] > } > } > ] > } > } > } > } > }