The Passthrough Block is a simple utility that passes input values to outputs without any modifications. It’s useful for scenarios where you need to route values through specific paths in your flow without altering them, such as grouping values from different branches or controlling wire flow.
The ith input to be passed through. The number of inputs is dynamic based on the connections made to the block. Each input port is labeled as “Input 1”, “Input 2”, etc.
The ith output from the passthrough. Each output corresponds to its respective input, passing through the exact same value. The number of outputs is always one less than the number of inputs.
The Passthrough Block does not perform any error handling. It simply passes through whatever values it receives on its inputs to the corresponding outputs. If an input is control-flow-excluded, the corresponding output will also be control-flow-excluded.
If an input is missing or null, the corresponding output will also be missing or null. The Passthrough Block does not modify or validate inputs in any way.
Can the Passthrough Block be used to delay execution?
No, the Passthrough Block does not introduce any delay. For timed delays, consider using the Delay Block instead.
Why is this block hidden by default?
The Passthrough Block is primarily used internally for organizing flows and is hidden by default to avoid cluttering the block menu. However, it can still be used by directly creating it in your flow.