I need to “join” all branches into one after the switch. For example, if the message is “text,” I want to execute the “Update Dados Cliente” code block immediately without waiting for the other branches to execute (since they won’t). Does this make sense?
When you have multiple inputs into one node, the 1st input gets processed and passed along the execution. The node doesn’t wait for the following inputs.
Except for the merge node, which has the option to wait for all inputs before proceeding, nodes are expected to run with the 1st received input.
If this is not what is happening, please share what you’re seeing in this case