still confused on how we I would be able to transf...
# ask-community
d
still confused on how we I would be able to transform map inputs in the following example:
Copy code
@task
def taskA() -> List[int]: 
  return results
with Flow() as flow:
  param = Parameter('blah')
  a_results = taskA()
  flow_run_task = FlowRunTask()
  flow_run_task.map(flow_name=unmapped('DownstreamFlow'), parameters=[{'blah': param, 'resultId': result} for result in a_results])