crud operator for text[]
Hi guys, I can't filter my field
I have a field name superfood which is a text array in supabase db
how can I filter an item in a list of text with a provided string
can you help to fix my code?
I have a field name superfood which is a text array in supabase db
how can I filter an item in a list of text with a provided string
can you help to fix my code?
`filters: {
permanent: [
{
field: "superfoods",
operator: "contains",
value: superfoodsFilter,
},
],
},
