reset
(flow): An optional input that, when triggered, resets the WaitAll node, clearing any previously received signals.autoReset
(boolean, default: false): When set to true, the WaitAll node will automatically reset after triggering its output, allowing it to be used multiple times within a spell without manually resetting.flow
(flow): The output flow that is triggered once all connected input flows have been activated.numInputs
(number, default: 3): Specifies the number of input flows the WaitAll node should expect. This value determines how many input flow ports will be available on the node.numInputs
configuration value.autoReset
input to true.reset
input flow.numInputs
set to 3. Each API call node is connected to one of the WaitAll node’s input flows. The WaitAll node’s output flow is then connected to the “Combine Results” node. This ensures that the “Combine Results” node will only be triggered once all three API calls have completed.
numInputs
configuration value to match the number of input flows you plan to connect to the WaitAll node.autoReset
input when you need the WaitAll node to handle multiple synchronization points within the same spell execution.numInputs
configuration value matches the actual number of connected inputs.autoReset
is not enabled.