Bulk update supabase

Hello,

I am updating more than 300 records and it is taking too long. Is there any way to update multiple records without using a for loop like I currently have?

You can use the bulk actions by selecting “multiple” and passing an array of records.

I didn’t find multiple option on update action, only on insert action :frowning:

I’d say you can use an Upsert action instead, otherwise you’ll need to use a Postgres function.