Skip to content

workflow.fan_in

Operation: workflow.fan_in
Category: workflow
Tags: fan-in, collect, dynamic

Collect outputs from all fan-out branches into an array

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

NameTypeDescription
resultsJSONArray of branch outputs
countNumberNumber of results
import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow")
.node("workflow-fan-in", "transform", (n) =>
n.config({
operation: "workflow.fan_in",
// ... node-specific config
})
)
.build();