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

02 Handle Positions Workflow

syntax-primitives

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"]
}

Related templates