Hello - Is there a way to take a generated dict fr...
# ask-community
j
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
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.