Skip to main content

Supabase Client Event Create Record

Emits a signal when a record is created by the client in Supabase.

Supabase Client Event Create Record node

This node listens for record creation events triggered by client-side actions in Supabase. It allows your app to react immediately when new data is created, such as updating UI state, triggering workflows, or chaining additional logic.

It works similarly to the Receive Event node, but in this case the event emission is built directly into the Create Record flow, removing the need for a separate Send Event node.

Inputs

DataTypeDescription
EnablebooleanEnables filtering by a specific table. When disabled, events from all tables are received.
Table NamestringThe table to listen to. Only visible when Enable is true.
Data Object IDstringOptional identifier used to scope or correlate the event.

Outputs

DataTypeDescription
OnsignalTriggered when a matching record creation event is received.
Table NamestringThe name of the table where the record was created.
Record IDstringThe identifier of the newly created record.