morgan
08/30/2021, 1:10 PMtrue
. Has anyone noticed this? Works fine if I turn RLS off. returning: 'minimal'
doesn't have any affect. The returned status is 204. No RLS errors at all. 🤔burggraf
08/30/2021, 8:45 PMFabian B.
08/30/2021, 10:19 PMburggraf
08/31/2021, 12:56 AM{ returning: "minimal" }
though which should solve that.morgan
08/31/2021, 7:00 AMconst deleting = await supabase
.from('connected_stores_keys')
.delete({
returning: 'minimal'
})
.eq('store_id', store_id);
morgan
08/31/2021, 7:01 AM{ returning: "minimal" }
, but delete doesn't seem to workmorgan
08/31/2021, 7:04 AM{
"error": null,
"data": [],
"count": null,
"status": 200,
"statusText": "",
"body": []
}
The status is 204 with minimal.morgan
08/31/2021, 7:06 AMmorgan
08/31/2021, 7:20 AMSELECT
policyburggraf
08/31/2021, 1:04 PMburggraf
08/31/2021, 3:19 PM.delete({returning: 'minimal'})
burggraf
08/31/2021, 3:19 PMburggraf
08/31/2021, 3:44 PMburggraf
08/31/2021, 3:45 PMSELECT
visibility to do a WHERE
with columns
So for his case SELECT
with uid() = user_id
should do itmorgan
09/01/2021, 2:46 AMSELECT
to remain locked. Thank you again! 😊