Skip to main content

groupInput

The entry point of a group's inner workflow. Receives all data passed from the outer workflow and passes it through unchanged. Every field becomes available inside the group via {{ @groupInput.<field> }} template syntax.

Marked is_input: true — if the output is a list, the runner unwraps it for iteration.

Parameters

Accepts any fields (extra="allow"). There are no fixed params. All fields come from whatever the outer workflow sends in.

Output

All input fields echoed to the output unchanged.

Example

{
"id": "groupInput",
"type": "groupInput",
"data": {
"isInput": true,
"label": "Group Input",
"isExecuted": false,
"handles": ["outputs"],
"schema": {},
"params": {
"text": { "value": "{{ @fetchEntries.text }}", "isExpression": true, "isAttachedToInputNode": false }
},
"inputs": [], "outputs": [], "errors": []
},
"position": { "x": 0, "y": 0 },
"isSelected": false,
"isDragging": false
}