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
Describe the bug
Querying based on any value in a given array contains in a column of text[]. select().in_() method throws exception
Flutter Client
var result = await Supabase.instance.client
.from('my_table')
.select()
.in_('my_column', ['value']);
Exception
PostgrestException (PostgrestException(message: could not find array type for data type text[], code: 42704, details: Bad Request, hint: null))