-
Notifications
You must be signed in to change notification settings - Fork 991
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GraphQL: Add a case-insensitive filter for string containment #1837
Comments
any update re that @lutter |
Hi @orenyodfat - I am sorry, but I haven't had time to work on this at all yet. |
A pretty important feature to have. It's worth noting that case-insensitivity also matters for |
Bumping this as well, hoping it will be added soon since the search feature is still not fully supported and this is the only similar replacement. |
As a user I think this is how you would expect this functionality to work. @lutter what do you think about making this the default for |
Yes, I totally agree that that is much more what users would expect. Making |
This is interesting and I hadn't considered it. Is the deterministic solution here to make the locale configurable somehow (so all indexers can set the same value)? |
I don't think it's something that |
We have a filter
field_contains: "something"
which matches any entity whosefield
contains the string"something"
. The comparison for that is case sensitive. It would be good to also have a filter for string containment that is not case sensitive._contains
_starts_with
,_ends_with
functionality to be case insensitive #3116_contains_strict
,_starts_with_strict
,_ends_with_strict
#3117_contains_insensitive
,_starts_with_insensitive
,_ends_with_insensitive
#3293en_US.UTF8
#3118The text was updated successfully, but these errors were encountered: