Replies: 1 comment
-
I would strongly suggest to have the last node run use: try/catch and then return a different result based on that, then branch based on that result. If not possible, you can simply use the error handler, and make it recover the flow by having it not rethrow an error. In which case, it will continue with the result of the error handler. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to be able to branch a flow based on the last node run result;
if it fails do X, if successful do Y. Is this possible?
Beta Was this translation helpful? Give feedback.
All reactions