Skip to content

Workflows

A workflow is a collection of connected blocks that work together to accomplish a task.

Creating a Workflow

  1. Open the editor
  2. Drag blocks from the sidebar
  3. Connect blocks by drawing lines between them
  4. 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.