Dart Reference v1.0

Insert data

Perform an INSERT into the table or view.


await supabase
    .from('cities')
    .insert({'name': 'The Shire', 'country_id': 554});