Supabase Auth
sb_insert_records
Insert one or more records into a Supabase table. Pass a single object or an array of objects. Use return=representation to get the created records back.
Remote node2flow/supabase
Other tools also called sb_insert_records?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"table": {
"type": "string",
"description": "Table name"
},
"return": {
"enum": [
"representation",
"minimal",
"headers-only"
],
"type": "string",
"description": "Return preference. representation=full record, minimal=no body, headers-only=headers"
},
"select": {
"type": "string",
"description": "Columns to return when return=representation"
},
"_fields": {
"type": "string",
"description": "Comma-separated list of fields to include in the response"
},
"records": {
"description": "Single record object or array of record objects to insert"
}
}
}