Bryan Whiting
01/15/2020, 6:30 PMZachary Hughes
01/15/2020, 7:09 PMBryan Whiting
01/15/2020, 9:27 PMtask.run()
right?Zachary Hughes
01/15/2020, 9:42 PMupstream_task
and a `downstream`task-- that should get you where you want to go. As for how to access these edges, they should be defined in the edges
attribute of your flow:
https://docs.prefect.io/api/unreleased/core/flow.html#flow-2Chris White
01/16/2020, 3:54 AMflow.downstream_tasks(my_task)
flow.upstream_tasks(my_task)
which return the corresponding sets of tasks