-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
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
[Question/Suggestion] Pass data of an output channel to the next one #486
Comments
Any recommendations @solverat ? |
Hey @alexej-d Sorry for the late response, but I need(ed) some time to think about this. tl;dr: No. Currently, there is no way to fetch data between the channel processes. We have an internal signal listener/workflow, which is not dispatching after every channel process. It's also not meant to store dynamic data. However, I just pushed something here: This will introduce a new object called With this, you should be able to pass the PDF to every upcoming channel. |
Thank you @solverat! Will play with the new addition ASAP! |
I was wondering if it is possible to pass some of an output channel's returned data to the next channel in the same workflow?
Imagine you have a custom output channel that creates a PDF and you want to pass the URL of the PDF to the Email channel.
How would you do that? Maybe via a global service that stores the current lifecycle's context variables?
The text was updated successfully, but these errors were encountered: