Portal Community

How to Run a Single Node

In Execution Mode, right-click any node → Run This Node. A dialog appears allowing you to provide the input data for the node (since its upstream nodes will not run).

What Single-Node Execution Does

  1. You provide mock input data in the "Test Input" JSON editor
  2. The backend creates a mini-execution context with only that node in scope
  3. The node's executor runs with the provided input
  4. The result appears in the Node Inspector tab
  5. No other nodes are affected; no full execution record is created
Uses Last Execution Context If a full execution has already run, the node can optionally use the actual output from that execution's upstream nodes as its input — rather than requiring you to provide mock data. This is the fastest way to re-test a specific failing node after a full run.

Breakpoints

For step-by-step debugging, set breakpoints on nodes before running the full workflow:

Debug Run

Click the down-arrow next to the Run button → Debug Run to run the entire workflow in step-by-step mode. Execution pauses before every node, allowing you to inspect input before the node runs.