Hi @ankan_ghosh ,
You can go for something like below for Query Builder.
path=/content/wknd
property=jcr:content/@jcr:title
property.operation=equalsIgnoreCase
property.value=MaGAZine
This is documented here.
JcrPropertyPredicateEvaluator (The Adobe AEM Quickstart and Web Application.)
operation"equals" for exact match (default), "unequals" for unequality comparison, "like" for using the jcr:like xpath function (optional), "not" for no match (eg. "not(@prop)" in xpath, value param will be ignored), "exists" for existence check (value can be true - property must exist, the default - or false - same as "not") , "equalsIgnoreCase" for case insensitive match, "unequalsIgnoreCase" for case insensitive unequality comparison.
Other approaches have been shared in earlier replies which is to convert to lowercase before searching or use JCR-SQL2.
Thanks,
Ram