groupOutput
The exit point of a group's inner workflow. Receives the final output of the last inner node and passes it through unchanged. All fields become accessible in the outer workflow via {{ @groupOutput.<field> }} template syntax.
Parameters
Accepts any fields (extra="allow"). There are no fixed params. All fields come from the last node in the inner workflow.
Output
All input fields echoed to the output unchanged.
Example
{
"id": "groupOutput",
"type": "groupOutput",
"data": {
"label": "Group Output",
"isExecuted": false,
"handles": ["inputs"],
"schema": {},
"params": {
"summary": { "value": "{{ @llmNode.response }}", "isExpression": true, "isAttachedToInputNode": false }
},
"inputs": [], "outputs": [], "errors": []
},
"position": { "x": 600, "y": 0 },
"isSelected": false,
"isDragging": false
}
After graph dissolution, the outer workflow references these fields as {{ @groupOutput.summary }}.