Appearance
Workflows
A workflow is a collection of connected blocks that work together to accomplish a task.
Creating a Workflow
- Open the editor
- Drag blocks from the sidebar
- Connect blocks by drawing lines between them
- Configure each block's properties
Workflow Variables
Variables allow you to store and reuse values across blocks.
typescript
// Define a variable
const myVar = "Hello";
// Use in a block
{{myVar}} World!Execution Order
Blocks execute in topological order based on their connections. Blocks without dependencies run first.