English
English
Appearance
English
English
Appearance
The Find Records node is used to query records in a target table during workflow execution and save the results to a variable for use by subsequent nodes. It is a key node for dynamic data queries and batch processing.

Select the table to query.
Configure filter conditions to screen records:
Set the maximum number of records returned, range 1 ~ 1000, default 100.
Specify a variable name for the query results, default records. Subsequent nodes can reference results through the variable name:
{{find_records.records}}Specific field reference:
{{find_records.records[0].<field_id>}}| Configuration | Value |
|---|---|
| Target Table | Orders |
| Condition 1 | Customer ID = {{trigger.record.customer_id}} |
| Condition 2 | Status = "Pending" |
| Sort | Created Time Descending |
| Limit | 50 |
| Result Variable Name | pending_orders |
Subsequent nodes can reference the query results via {{find_records.pending_orders}}.
The Find Records node is often used as a data source for loop nodes: