Hi,
I’m doing an exact match search (wrapping the term with quotes) however I also want to make it case insensitive. So right now if I search for “ABC” it only returns record with “ABC” but I want to return “abc” as well.
Is this possible? Should I lower case all the terms before I index it to swiftype? and then on my search api call I’ll always change the terms to lowercase?