https://prefect.io logo
j

John Ramirez

01/27/2020, 6:55 PM
Hello - Is there a way to take a generated dict from a task and use the
dict.items()
function to create separate branches
👀 2
n

nicholas

01/27/2020, 7:16 PM
Hi @John Ramirez! https://docs.prefect.io/core/tutorials/calculator.html#arithmetic is an example of conditional branching that I think may be helpful; you may need to case
dict.items()
but otherwise you should be able to iterate over those items and branch as needed.