Skip to content

Updating visuals

If you see any images containing outdated UI, please bear with us.

We are updating all content as quickly as possible to mirror our new UI.

Insert

Use this action to insert one or more rows into a Supabase table.

Add the action

  1. Create (or open) a workflow.
  2. Click + Add action.
  3. Select SupabaseInsert.
  4. Select the Supabase Connection you want to use.

Configure the action

  • Table — The table you want to insert rows into.
  • Data — A list of items (each item is one row).

Advanced

  • Return columns (optional) — Choose which columns you want back after the insert.
    • Leave it empty to return all columns.

Common pitfalls

Insert fails (Row Level Security)

If your Supabase table uses Row Level Security (RLS), make sure the current user has an INSERT policy for that table.

You enabled “Return columns” and now it errors

When you ask Supabase to return inserted rows, the user also needs permission to read those rows (typically a SELECT policy).

CONTINUE LEARNING

If you need reusable filters + sorting + access rules for reading data, use a Table View.

Views →