You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a huge amount of fields that are being filtered.
/search?filter=brand.name in ['audi', 'land rover']
/search?filter=brand.name ~ 'audi'
/search?filter=name ~ '%abc%'
/search?filter=name ~ 'sss%'
I need this to be case-insensitive globally on the whole application for every type of search for every field.
I know that there is ~~ operation but what about in case?
The text was updated successfully, but these errors were encountered:
We have a huge amount of fields that are being filtered.
/search?filter=brand.name in ['audi', 'land rover']
/search?filter=brand.name ~ 'audi'
/search?filter=name ~ '%abc%'
/search?filter=name ~ 'sss%'
I need this to be case-insensitive globally on the whole application for every type of search for every field.
I know that there is
~~
operation but what aboutin
case?The text was updated successfully, but these errors were encountered: