Not sure if this is a plug-in issue or Bubble issue.
When I sent a filter from Bubble to Supbase, it’s removing the “()” needed in the URL, so I ended up getting a parsing error
.not("brand_name","in",(["instagram", "samsung"]))
When I use the not.in
, it’s sending the URL to Supabase such as:
DELETE | 400 | https://[project_id]/rest/v1/gen_collab?user_id=eq.efd7b4bf-ba18-4e46-b29d-ff1fd55d5d16&brand_name=not.in.instagram%2Csamsung
when the bolded part should be with the parentheses: brand_name=not.in.(instagram%2Csamsung)