Apr 28, 2023
Dude. You missed the most powerful. A mermaid diagram. Use them from ChatGPT all the time as a software architect.
sequenceDiagram
participant User
participant Presentation Layer
participant Application Layer
participant Database Layer
User->>+Presentation Layer: Requests webpage
Presentation Layer->>+Application Layer: Sends request
Application Layer->>+Database Layer: Queries database
Database Layer-->>-Application Layer: Returns data
Application Layer-->>-Presentation Layer: Returns data
Presentation Layer-->>-User: Renders webpage
Paste it in mermaid live editor.