Update data
Perform an UPDATE on the table or view.
update()
should always be combined with Filters to target the item(s) you wish to update.
await supabase
.from('cities')
.update({ 'name': 'Middle Earth' })
.match({ 'name': 'Auckland' });
Perform an UPDATE on the table or view.
update()
should always be combined with Filters to target the item(s) you wish to update.
await supabase
.from('cities')
.update({ 'name': 'Middle Earth' })
.match({ 'name': 'Auckland' });
Need some help?
Contact supportLastest product updates?
See ChangelogSomething's not right?
Check system status