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

02 Handle Positions Workflow

This workflow models nodes with explicit top, bottom, left, and right handle connections.

Full FlowZap Code

laneA { # Lane A
  n1: circle label:"Start 02 Handle Positions"
  n2: rectangle label:"02 Handle Positions step 2"
  n3: rectangle label:"02 Handle Positions step 3"
  n4: rectangle label:"02 Handle Positions step 4"
  n5: circle label:"End 02 Handle Positions"

  n1.handle(bottom) -> n2.handle(top) [label="Bottom to Top"]
  n2.handle(right) -> n3.handle(left) [label="Right to Left"]
  n3.handle(top) -> n4.handle(bottom) [label="Top to Bottom"]
  n4.handle(right) -> n5.handle(left) [label="Right to Left"]
}

Related templates

Back to all templates