Skip to content

Workflows

Ayush Chugh edited this page Oct 7, 2022 · 1 revision

Request Response workflow

flowchart LR
    A[/Request/] --> B[Route]
    B --> C[Schema]
    C --> D{Additional Middleware?}
    D --> |Yes| E[Middleware]
    D --> |NO| F[Controller]
    E --> F
    F --> G[/Response/]
Loading

Database query workflow

flowchart LR
    A[Controller] --> B[Service] --> C[(Database)]
    C --> B --> A
Loading