How do you set up a parameter in a parent flow to be passed after modification into a child flow? I have problems in the using of the parameter. Ive tried...
DOW = Parameter("DOW", default="Monday")
FlowExecution = create_flow_run(
flow_name=FlowName,
project_name=ProjectName,
task_args=dict(name="Flow Execution",trigger=all_successful),
parameters={"StringA":"The Day of the week is "+DOW+"."}
)
AND
DOW = Parameter("DOW", default="Monday")
StringAField = "The Day of the week is "+DOW+"."
FlowExecution = create_flow_run(
flow_name=FlowName,
project_name=ProjectName,
task_args=dict(name="Flow Execution",trigger=all_successful),
parameters={"StringA":StringAField}
)