zwarag
11/14/2021, 5:46 PMjs
supabase.from('profiles').upsert({id: 1, url:'something'})
or is it necessary to do an update instead of an upsert like
js
supabase.from('profiles').update({url:'something').eq{'id': 1}
silentworks
11/14/2021, 9:26 PM