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
When field being search is not of String type but similar (citext, for example) it's desirable to use _ilike filter but the code constructing filter doesn't use constructed pattern in this case - it uses just value:
When field being search is not of String type but similar (citext, for example) it's desirable to use
_ilike
filter but the code constructing filter doesn't use constructed pattern in this case - it uses just value:ra-data-hasura/src/buildVariables/buildGetListVariables.ts
Lines 90 to 109 in b0f8cab
So when I set up filter using
TextInput
withsource=field@_like
forcitext
column actual search is performed by value but not%value%
.The text was updated successfully, but these errors were encountered: