Reference · Tools

No Operation, do nothing

No Operation — passes items through unchanged without any transformation.

Action Core Nodes v1

No Operation passes items straight through without changing them. It exists for structure rather than behaviour: a placeholder while you build, or a tidy point where several branches converge before continuing. It needs no credentials and no configuration.

Node type
Action
Parameters
1
Outputs
Output, Error
Credentials
None required

No Operation, do nothing

Pass items through without changes

Overview

The No Operation (no_op) tool is a passthrough node that takes input items and outputs them without modification. Useful as a placeholder, for workflow organization, or to merge multiple branches without transforming data.

Category: Core Nodes
Tool Name: no_op
Version: 1

Appearance: Icon: lucide-ArrowRight | Color: #b0b0b0

Node Type

Action — processes input items and produces output

Input / Output

DirectionPort(s)
InputInput
OutputOutput, Error

Credentials

This tool does not require any credentials.

Parameters

ParameterTypeRequiredDefaultDescription
Max ConcurrencynumberNo10Maximum number of items to process concurrently.

Output Data

One output item per input item, identical to the input. The item JSON is passed through unchanged and binary data is forwarded, so a file attached upstream is still attached downstream. No fields are added or removed.

Because several branches can be wired into the same input, this node also works as a join point: every item arriving on any incoming connection leaves on Output.

Usage Examples

  • Use as a merge point for multiple branches
  • Placeholder node during workflow development

Example Configuration

{
  "type": "no_op",
  "parameters": {
    "maxConcurrency": 10
  }
}

Error Handling

ModeBehavior
stopHalts workflow on first error
continueSkips failed items, passes successful ones through
errorPortRoutes failed items to Error output port

Tips

Passes items through unchanged — use as a placeholder or branch merge point.

Frequently asked questions

Why would I add a node that does nothing?

Two reasons: as a placeholder while wiring a workflow you have not finished, and as a single convergence point so several branches join before continuing rather than each connecting separately.

Does it change the items at all?

No — items pass through unchanged, in the same order, with the same content.

Does it affect execution timing?

It is a pass-through, so it neither batches nor delays. It simply forwards what arrives.

Does it need credentials?

No, and it has essentially nothing to configure.

Build with the No Operation, do nothing node

Drop it into a workflow, wire it to an agent, or call it on a schedule.

Open BusyBot

Last updated . Spotted something wrong? Tell us.