Skip to content

workflow.merge_context

Operation: workflow.merge_context
Category: workflow
Tags: control-flow

Collects outputs from all dependency nodes into a single merged object

Type: Native (built-in)
Timeout: 300s
Retries: 3 (ExponentialWithJitter)

NameTypeDescription
mergedJSONMerged dependency outputs
import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow")
.node("workflow-merge-context", "transform", (n) =>
n.config({
operation: "workflow.merge_context",
// ... node-specific config
})
)
.build();