DataStore
The DataStore is a built-in database available to every team. It requires no connection setup -- your tables are ready to use immediately from the Database Studio or from within your workflows.
Use DataStore nodes when you need to persist data between workflow runs, build lookup tables, or store results for later processing.
Available Nodes
| Node | Description |
|---|---|
| DataStore Query | Read data from a DataStore table |
| DataStore Insert | Add new rows to a DataStore table |
| DataStore Update | Modify existing rows in a DataStore table |
| DataStore Delete | Remove rows from a DataStore table |
How It Works
DataStore nodes operate on the tables you create in Database Studio. Every team has its own isolated DataStore, so your data is private and separate from other teams.
Because the DataStore is built in, you do not need to create a connection before using these nodes. Simply add a DataStore node to your workflow, pick a table, and configure the operation.
TIP
DataStore tables can also be used as triggers. The DataStore Trigger starts a workflow automatically whenever a row is inserted, updated, or deleted in a specific table.
Common Use Cases
- Lookup tables -- Store reference data (e.g., product catalogs, country codes) that other workflows can query.
- State tracking -- Keep track of processed items to avoid duplicates across workflow runs.
- Aggregation -- Collect results from multiple workflow runs into a single table for reporting.
- Staging data -- Insert raw data from an external source, then query and transform it in a follow-up workflow.