3 min readUpdated Mar 2, 2026

Workflows

Workflows are visual automation pipelines that let you connect data sources, apply transformations, run AI analysis, and output results — all without writing code.


Workflow Editor

The Workflow Editor provides a drag-and-drop canvas for building data pipelines:

AreaDescription
CanvasMain area where you drag, drop, and connect nodes
Node LibraryLeft panel listing all 170+ node types, organized by category
Properties PanelRight panel showing settings for the selected node
ToolbarTop bar with Run, Save, Undo/Redo, and Zoom controls
Data PreviewClick any completed node to see its output data

Node Categories

CategoryKey Nodes
TriggersSchedule Trigger, Logical Trigger, AI Trigger
Data SourcesDatabase Query, Database Write, File Upload, Workflow Input
TransformationsAggregation, Filter, Sort, Join, Union, Limit, Deduplicate, Fill/Clean, Computed Column, Projection, Data Validation, Data Classify
AIAI Enrichment, AI Formatter, AI Summary, AI Compliance Check, AI Conditional, AI Transcriber, Image Analysis, PDF Extract, Text Extraction
IntegrationsSend Email, Send Message, Read Email, Read Messages, Google Drive, OneDrive, and 30+ more
LogicMulti-Conditional, Compliance Check
OutputsDashboard Output, Workflow Output, CSV/JSON Export, file writers (CSV, Excel, JSON, PDF, Text)

See the full Node Library for documentation on every node.


Building a Workflow

  1. Add a Trigger — Every workflow starts with a trigger node (schedule, logical, or AI-based).
  2. Add Data Source Nodes — Pull data from databases, files, integrations, or workflow inputs.
  3. Add Transformation Nodes — Filter, aggregate, sort, join, or enrich your data.
  4. Add Output Nodes — Send results to dashboards, files, emails, or external services.
  5. Connect Nodes — Drag from output ports (right side) to input ports (left side) to create data flow edges.
  6. Configure Nodes — Click any node to open its settings in the Properties Panel.
  7. Run — Click the Run button to execute the workflow.

Execution Status

When a workflow runs, each node shows a status indicator:

StatusMeaning
🟡 PendingNot yet executed
🔵 RunningCurrently processing
🟢 CompleteSuccessfully finished
🔴 ErrorSomething went wrong

Click any completed node to preview its output data in the Data Preview Panel.


Scheduling

Use the Schedule Trigger node to automate workflow execution:


Nested Workflows

Workflows can call other workflows using the Execute Workflow and Run Workflow nodes:

This enables composable, modular automation where common data processing steps are reused across pipelines.


For More Details