Hi - In a `Flow` I am looking to: (1) run a set of...
# prefect-community
i
Hi - In a
Flow
I am looking to: (1) run a set of
tasks
(2) do something with the result in another `task`i.e. munge data. What is the suggested way to implement this? Is it using
set_upstream
? the example I see
say_hello.set_upstream(second_add, flow=flow)
waits for a specific task to finish not a set of tasks. Does this get handled under the hood?
c
Hey Itay - have a look at task.set_dependencies for setting multiple upstream dependencies at once!
i
something like this? How do I access the results of the upstream tasks?