Bidirectional Loop Workflow
edge-cases
This workflow models circular references between nodes in both directions.
edge-cases
This workflow models nodes without label parameters.
laneA { # Lanea
n1: circle label:"Start Missing Labels"
n2: diamond
n5: rectangle label:"Missing Labels step 5"
n9: rectangle label:"Missing Labels step 9"
n13: circle label:"End Missing Labels"
n1.handle(right) -> n2.handle(left)
n2.handle(bottom) -> laneC.n3.handle(top) [label="Yes/Approved"]
n2.handle(bottom) -> laneD.n4.handle(top) [label="No/Rejected"]
n5.handle(bottom) -> laneB.n6.handle(top)
n9.handle(bottom) -> laneB.n10.handle(top)
}
laneB { # Laneb
n6: rectangle label:"Missing Labels step 6"
n10: rectangle label:"Missing Labels step 10"
n6.handle(bottom) -> laneC.n7.handle(top)
n10.handle(bottom) -> laneC.n11.handle(top)
}
laneC { # Lanec
n3: rectangle
n7: rectangle label:"Missing Labels step 7"
n11: rectangle label:"Missing Labels step 11"
n3.handle(bottom) -> laneA.n5.handle(top)
n7.handle(bottom) -> laneD.n8.handle(top)
n11.handle(bottom) -> laneD.n12.handle(top)
}
laneD { # Laned
n4: rectangle label:"Missing Labels step 4"
n8: rectangle label:"Missing Labels step 8"
n12: rectangle label:"Missing Labels step 12"
n4.handle(bottom) -> laneA.n5.handle(top)
n8.handle(bottom) -> laneA.n9.handle(top)
n12.handle(bottom) -> laneA.n13.handle(top)
}edge-cases
This workflow models circular references between nodes in both directions.