Eilon Eilstein
06/07/2024, 1:11 PMNate
06/07/2024, 5:15 PMresult = foo()
bar(foo_result=result)
where in this case, foo and bar are two flows that should run in the same process
if bar is a separate deployment, you'd do
result = foo()
run_deployment(name="bar-deployment/bar", parameters={"foo_result": result}) # run somewhere elseEilon Eilstein
06/09/2024, 8:06 AMEilon Eilstein
06/09/2024, 8:40 AMflow2 when a different flow, flow1 is successful AND passes a predefined parameter to flow2 that I can access in my flow's code?