-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Description
I need a way to pass data from one step to the next in a workflow, without explicitly setting it to the shared TData.
Scenario:
• Step 1 outputs a Response object (which contains various properties).
• Step 2 (an “If” step) should evaluate a condition, like Response.StatusCode == "Yes", based on the Response from Step 1.
Additional Context:
• The workflow steps are designed dynamically by the user via a UI.
• The number of steps and the relationships between them are not fixed ahead of time.
Challenge:
• I do not want to manually set the Response from Step 1 into the shared TData as part of the workflow, as this may not be ideal for all use cases (especially with dynamically designed steps).
Question:
Is there a clean, reusable way to pass data from one step to the next dynamically (e.g., passing Response to Step 2 without using shared TData)?