Replies: 1 comment 3 replies
-
Yeah a resolver would probably work in your case. There will likely be edge cases though like to_upper would still work and any functions that return strings would be unaffected. Going the resolver route would basically let you normalize the input to upper or lower case. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi folks;
I have an application where I'd like to modify the behavior of string comparison so that it is always case insensitive. I know that I can just add .as_lower to every string in every comparison operation, but I'm hoping to avoid the additional verbiage. Is there a way to modify the resolvers or some other component to accomplish this?
Beta Was this translation helpful? Give feedback.
All reactions