English
English
Appearance
English
English
Appearance
The trigger is the entry point of a workflow, determining when the workflow starts. Each workflow has exactly one trigger node, located at the beginning of the canvas.

SmartTable supports the following trigger types:
| Trigger Type | Description |
|---|---|
| Record Created | Triggered when a new record is created |
| Record Updated | Triggered when a record is updated; can listen to specified fields |
| Specified Time | Triggered according to a set schedule; supports repetition |
| Record Time Reached | Triggered when a date/date time field value in a record is reached |
The workflow starts automatically when a new record is created in the associated table.
Triggered when an existing record in the associated table is updated.
Triggers the workflow according to a scheduled time plan, independent of record changes.
Triggered when the value of a date/date time field in a record is reached.
Except for the Specified Time trigger, all other triggers support filter conditions:
Performance Suggestion
Try to use indexed fields (such as primary keys, Single Select, dates) as filter conditions, and avoid using full-text matching fields on large tables.
After triggering, the current trigger record information is injected into the workflow context, and subsequent nodes can reference it through variables:
{{trigger.record.<field_id>}}