Insert data
Performs an INSERT into the table.
await supabase
.from('cities')
.insert({'name': 'The Shire', 'country_id': 554});
Performs an INSERT into the table.
await supabase
.from('cities')
.insert({'name': 'The Shire', 'country_id': 554});