📄️ Create a query
In the Command-Query Responsibility Segregation (CQRS) pattern, queries represent the operations that retrieve data from the system. They are typically used to read or retrieve data within an application, and are typically represented by a message or a request that contains the data needed to execute the operation.
📄️ Create a handler for your query
The query itself contains only data that the handler needs. You can create a handler by implementing the QueryHandler interface