db_insert
Insert new rows into a Supabase table by providing the table name and data object. Supports single or batch inserts, and lets you specify which columns to return.
Instructions
Insert new row(s) into a table
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Data to insert (single row as object or array of objects) | |
| table | Yes | Table name to insert into | |
| returning | No | Columns to return (comma-separated, default: *) | * |