Can I access results of a flow run created with cr...
# ask-community
t
Can I access results of a flow run created with create_flow_run. I normally start child runs with
Copy code
f_run = flow.run
method and access the results with
Copy code
f_run.results[df].result
.
k
Hi @Toprak Nihat Deniz Öztürk, There is a corresponding
get_task_run_result
that you can use to pull the result of a subflow run task
upvote 1
Docs here
t
Thanks @Kevin Kho 👍