Duplicate Node Ids Workflow
This workflow models the same node IDs reused in different lanes.
This workflow models a node with no connections.
Copy and paste the following FlowZap code into a project in your FlowZap account to see this template diagram.
laneA { # Lanea
n1: circle label:"Start Orphan Node"
n2: rectangle label:"Orphan Node step 2"
n3: diamond label:"Orphan Node step 3"
n4: rectangle label:"Orphan Node step 4"
n5: circle label:"End Orphan Node"
n1.handle(right) -> n2.handle(left)
n2.handle(right) -> n3.handle(left) [label="Next"]
n3.handle(right) -> n4.handle(left)
n3.handle(bottom) -> n2.handle(bottom) [label="Retry/Rejected"]
n4.handle(right) -> n5.handle(left)
}This workflow models the same node IDs reused in different lanes.
This workflow models circular references between nodes in both directions.
This workflow models lanes that are conceptually nested within each other.
This workflow models lanes that never connect to each other.