Asymmetric Tree
One root branching into three paths of different depths.
Mermaid source
%%metro title: Asymmetric Tree%%metro style: dark%%metro line: short | Short Branch | #e63946%%metro line: medium | Medium Branch | #2db572%%metro line: long | Long Branch | #0570b0
graph LR subgraph root [Root] input[Input] dispatch[Dispatch] input -->|short,medium,long| dispatch end
subgraph branch_short [Short] s1[Quick] s2[Result] s1 -->|short| s2 end
subgraph branch_med_1 [Medium Step 1] m1[Medium A] m2[Medium B] m1 -->|medium| m2 end
subgraph branch_med_2 [Medium Step 2] m3[Medium C] m4[Medium D] m3 -->|medium| m4 end
subgraph branch_long_1 [Long Step 1] l1[Long A] l2[Long B] l1 -->|long| l2 end
subgraph branch_long_2 [Long Step 2] l3[Long C] l4[Long D] l3 -->|long| l4 end
subgraph branch_long_3 [Long Step 3] l5[Long E] l6[Long F] l5 -->|long| l6 end
dispatch -->|short| s1 dispatch -->|medium| m1 dispatch -->|long| l1 m2 -->|medium| m3 l2 -->|long| l3 l4 -->|long| l5CLI command
nf-metro render examples/topologies/asymmetric_tree.mmd -o asymmetric_tree.svg