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
This is missing the parentheses around the array. It should look like this: http://127.0.0.1:54321/rest/v1/company?select=*&offset=0&limit=30&or=(id.in.("1","2","4"))
Packages
@refinedev/supabase
Additional Context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
If a
LogicalFilter
with the operatorin
is used inside aConditionalFilter
or
the array value is parsed incorrectly by thegenerateFilter
Method.When passing a array outside of a
LogicalFilter
it parses correctly.Steps To Reproduce
I am using the following Filter configuration:
This is sending the following to supabase as filter:
http://127.0.0.1:54321/rest/v1/company?select=*&offset=0&limit=30&or=(id.in."1","2","4")
Supabase then throws the follwing error:
Expected behavior
This is missing the parentheses around the array. It should look like this:
http://127.0.0.1:54321/rest/v1/company?select=*&offset=0&limit=30&or=(id.in.("1","2","4"))
Packages
Additional Context
No response
The text was updated successfully, but these errors were encountered: