i have column that is Array of uuid and im trying ...
# flutter
e
i have column that is Array of uuid and im trying to find rows where this user appears without contains respons is good but with return null
Copy code
await supabase
        .from('Groups')
        .select()
        .contains("members", "2983932e-ae56-42de-8b7f-faf637e53adc")
        .execute();
response without contains
Copy code
[{id: 1, created_at: 2022-07-18T19:53:51+00:00, owner: 2983932e-ae56-42de-8b7f-faf637e53adc, members: [2983932e-ae56-42de-8b7f-faf637e53adc, 2983932e-ae56-42de-8b7f-faf637e53ada], recruit: false, desc: tes, avatar_url: te}]
9 Views