Hi I have a dag that has some tasks that I need to run parallels then other tasks that have to wait until the parallel tasks all finish before it can start.
Here I've created a diagram of what I want. A1 and B1 to start at the same time when the DAG is started. A1 initiates A2 when A1 is finished, and B1 starts B2 when finished then B2 -> B3. Only When A2 and B3 are both finished should C1 then start, finally when finished C2.
How can I write the dependency for this sort of structure? Thank you.