Templates / flowchart

Event sourcing + CQRS

Command side writes events; a separate read-model projection serves queries.

Open in studio

Preview

Mermaid 11 renderer

Rendering preview...

Mermaid source

flowchart

flowchart LR
    client[Client] --> command[Command handler]
    command --> store[(Event store)]
    store --> projector[Projector]
    projector --> readmodel[(Read model)]
    client --> query[Query handler]
    query --> readmodel

More templates