Skip to main content
Version: Next

Clean Architecture

Command and Queries

  • Command

    • Does something
    • Should modify the state
    • Should not return a value
  • Query

    • Answer a question
    • Should not modify a state
    • Should return a value