supabase_upsert
Insert new rows or update existing ones in a Supabase table on conflict, specifying columns for conflict resolution and optional duplicate handling.
Instructions
Upsert (insert or update on conflict) rows in a Supabase table
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Row or array of rows to upsert | |
| table | Yes | Table name to upsert into | |
| onConflict | No | Column(s) for conflict resolution | |
| ignoreDuplicates | No | Ignore duplicate rows instead of updating |