Would just be a small checkbox that could make it case insensitive. Could be helpful for user provided stuff. On my quest for optimization of a tag system and this would help a great deal.
This is a pretty good idea and may be added, but in the meantime I’d suggest using the String to Lowercase
block both when you save data to the DB, and when you are retrieving data from the DB, which will force cases to match.
There’s some potential query-latency performance tradeoffs to adding this (and things like contains). Increasing complexity of queries can cause issues, so it’s something that needs to be looked at pretty carefully before being added in.
Also thought of a better idea, add the full suite of options from if statements. Contains would be helpful too.