Peanut
08/21/2021, 3:16 PMburggraf
08/21/2021, 3:20 PMINSERT data but not be able to SELECT data (for logging purposes only.)burggraf
08/21/2021, 3:20 PMINSERT call with the `Supabase JS Client`: {returning: 'minimal'}burggraf
08/21/2021, 3:20 PMUPDATE.burggraf
08/21/2021, 3:22 PMconst { data, error } = await supabase
.from('device_log')
.insert([
{
userid: 'aaa',
model: 'bbb',
}
],{returning: 'minimal'});burggraf
08/21/2021, 3:24 PMinsert or update also triggered a select behind the scenes. Hope this helps.