Hi! Is there a way to retrieve a flow's subflows a...
# prefect-getting-started
l
Hi! Is there a way to retrieve a flow's subflows and tasks from the client?
n
hi @Lucas - yes you can use
read_task_runs
and
read_flow_runs
with some filter like
FlowRunFilter(parent_flow_run_id=dict(any_=[UUID(...)]))
l
Great thank you!
It worked great, thanks again! I used something like this for retrieving a flow's subflows:
n
catjam