Hey everyone - I am trying to see how the results ...
# ask-community
j
Hey everyone - I am trying to see how the results of a mapping task are passed to the next stage but don’t know how to get the result. Please help!
c
Hey John, all results are stored as attributes of the corresponding
State
objects. So,
Copy code
flow_state = flow.run()

flow_state.result # a dictionary of Tasks -> States

flow_state.result[my_task].result # the result of a task in the flow
j
thank you! that worked
💯 1