Direction: TB/TD (top-bottom), BT, LR, RL. Shapes: [rect], (rounded), {diamond}, ((circle)), [(db)]
Basic Flow
graph TD
A[Start] --> B{Decision}
B -->|Yes| C[OK]
B -->|No| D[Cancel]
C --> E[End]
D --> E
graph TD
A[Start] --> B{Decision}
B -->|Yes| C[OK]
B -->|No| D[Cancel]
C --> E[End]
D --> ESubgraphs
graph TB
subgraph Frontend
A[React] --> B[Redux]
end
subgraph Backend
C[Node] --> D[DB]
end
B --> C
graph TB
subgraph Frontend
A[React] --> B[Redux]
end
subgraph Backend
C[Node] --> D[DB]
end
B --> C