Full and Partial Executions Inside the Designer
When you’re building a workflow, you usually want to test it as you go.
Agentic WorkFlow gives you two ways to do that:
- Run the whole workflow (end-to-end)
- Run one step (and only what’s needed before it)
Run the whole workflow (full run)
Section titled “Run the whole workflow (full run)”Use this when you want to see the complete result from start to finish.
- Open the page you want the workflow to work on.
- In the designer, click Execute Workflow.
- The workflow runs node by node.
- Click a node to see its output.
Run one step (partial run)
Section titled “Run one step (partial run)”Use this when you’re adjusting one node and want fast feedback.
When you run a step, Agentic WorkFlow will also run any steps before it that are required to provide input.
- Click the node you want to test.
- Open its configuration panel.
- Click Execute Step.
If you don’t want parts of the workflow to run while testing, temporarily disable those nodes.
Common issues
Section titled “Common issues”“The destination node is not connected to any trigger.”
- Partial execution requires that the workflow has a trigger node. If none is connected, you’ll see this error.
- To fix: add a trigger (for development, a manual trigger is common).
“Please execute the whole workflow … existing execution data is too large.”
- This occurs when your workflow is very complex or has many branches. Partial execution sends internal workflow structure for testing, which might exceed size constraints.
- A workaround is to insert a Limit node to reduce output size during testing, then disable it for full runs.
Execution Modes (Manual vs Production)
Section titled “Execution Modes (Manual vs Production)”- Manual execution is initiated from the designer; it’s meant for development.
- Production execution runs automatically in response to a trigger (schedule, event, etc.).
- For this, workflows must include a non-manual trigger node and be activated.
- Production runs do not respect pinned data — they always execute everything fully.