β All Concepts
βοΈ
CQRS
DataA pattern that splits read and write models for different needs
CQRS gives the write path and the read path their own separate models instead of forcing both through one shared representation. The write side keeps a shape aligned with domain rules and validation; the read side keeps a shape optimized for what screens or APIs actually need to show. It starts from the premise that if the questions are different, the answers should be shaped differently too.