Supabase Auth

sb_delete_records

Delete records from a Supabase table matching a filter. Filter is REQUIRED to prevent accidental full-table deletion. Use sb_list_records first to verify which records will be deleted.

Remote node2flow/supabase

Other tools also called sb_delete_records? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "table": {
      "type": "string",
      "description": "Table name"
    },
    "filter": {
      "type": "string",
      "description": "PostgREST filter (REQUIRED). Example: id=eq.123 or status=eq.archived"
    },
    "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"
    }
  }
}