Delete data
Performs a DELETE on the table.
delete()
should always be combined with Filters to target the item(s) you wish to delete.
await supabase
.from('cities')
.delete()
.match({ 'id': 666 });
Performs a DELETE on the table.
delete()
should always be combined with Filters to target the item(s) you wish to delete.
await supabase
.from('cities')
.delete()
.match({ 'id': 666 });