Hi, is it possible to branch into two separate ste...
# ask-metaflow
b
Hi, is it possible to branch into two separate steps (e.g. "a" and "b") and apply
foreach
to just one of the steps?
1
a
Yep!
b
kinda like this, but with step "a" running a bunch of tasks in parallel
nice! how would I do that?
a
Yes - you can add another step after a which would be a foreach and a join which then goes into the join
b
ah yes of course... obvious now that you say that
thank you!