Update data
Performs an UPDATE on the table.
update()
should always be combined with Filters to target the item(s) you wish to update.
final res = await supabase
.from('cities')
.update({ 'name': 'Middle Earth' })
.match({ 'name': 'Auckland' })
.execute();