docs/tables/in-flows.mdx
The Tables piece gives flows full access to your data, both as steps and as triggers.
Tables can also trigger a flow, which is usually the more interesting half:
| Trigger | Fires when |
|---|---|
| New Record Created | A row is added |
| Record Updated | A row changes |
| Record Deleted | A row is removed |
That means you can react to data instead of polling for it. Something writes a lead into a table, and enrichment starts on its own.
<Tip> Splitting work across a table like this keeps each flow small. One flow collects, one reacts. Either can fail and be retried without redoing the other. </Tip>