Welcome to FlowZap, the App to diagram with Speed, Clarity and Control.

孤儿节点工作流

edge-cases

此工作流模拟一个没有连接的节点。

完整 FlowZap 代码

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)
}

相关模板