I am using react admin and I have a view that contains a column which has a bunch of ids [1, 2, 3] and I have an id based on which I want to filter.
<List
resource="view"
filter={{
...(groupId && { [`group_ids.overlap`]: `{${groupId}}` }),
}}
so In the above I only want to see the records that have groupId in group_ids which comes from the view - does react admin support this? I am using supabase with react admin.
Thank you for your time.