We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now, when executing the flow, we specify the desired results in the third parameter, for example
const response = await FlowManager.run( flowDefinition, parameters, ['myResponse'], resolvers, );
But, when for whatever reason (for example a cyclic flow or and unintended incorrect flow), the flow ends and it does not have a myResponse property.
myResponse
It would be ideal if you can notify of such cases so the rest of the code can react accordingly.
The text was updated successfully, but these errors were encountered:
Thanks for the suggestion. Need to think and design a generic and flexible solution for this request. There are several cases to consider.
Sorry, something went wrong.
daniel-duarte
No branches or pull requests
Right now, when executing the flow, we specify the desired results in the third parameter, for example
But, when for whatever reason (for example a cyclic flow or and unintended incorrect flow), the flow ends and it does not have a
myResponse
property.It would be ideal if you can notify of such cases so the rest of the code can react accordingly.
The text was updated successfully, but these errors were encountered: