Supabase Auth

sb_update_records

Update records in a Supabase table matching a filter. Filter is REQUIRED to prevent accidental full-table updates. Use return=representation to see what changed.

Remote node2flow/supabase

Other tools also called sb_update_records? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "description": "Fields to update as key-value pairs"
    },
    "table": {
      "type": "string",
      "description": "Table name"
    },
    "filter": {
      "type": "string",
      "description": "PostgREST filter (REQUIRED). Example: id=eq.123 or status=eq.draft"
    },
    "return": {
      "enum": [
        "representation",
        "minimal",
        "headers-only"
      ],
      "type": "string",
      "description": "Return preference"
    },
    "select": {
      "type": "string",
      "description": "Columns to return when return=representation"
    },
    "_fields": {
      "type": "string",
      "description": "Comma-separated list of fields to include in the response"
    }
  }
}