What is the recommended method to stop a (multi-branch) workflow when a condition occurs? I know that the “Stop and Error” node works, but (unsurprisingly) that raises an error which then activates the error workflow. Is there any less aggressive method that essentially jumps to the end of the workflow?
Here’s a very simple example of 3 nodes. I’d like the entire workflow to stop after executing the Top branch if the IF is true, and not execute the Middle and Bottom branches. I know this can be done with the Stop/Error node, but was wondering if there’s a less aggressive method
Hi @Bez I don’t think you can do that. Because n8n will process the workflow in parallel. Meaning one after one node. So it doesn’t know the operation has ended and tries to process the next one.