Hello. In prefect2, I have a few upstream/downstream subflows that I want to run for n inputs in parallel, but for each n, the dependency should be respected (e.g., if subflow_1 fails for n=x, subflow_2 should be skipped for n=x).
What is the cleanest way to implement this and using which task runner? (I'm thinking of defining a main_flow that takes n as input and manages the dependency of subflow runs, so I just run the main_flow in parallel for n)
Thanks