Serverless Technology
Serverless Technology
My apologies for the late response. You're quite correct, a new `Query` is the correct place to put this. This might look something like: ``` struct KafkaEventForwarder { client: KafkaProducer...
Hi @jonaslimads, thanks for the interest! You're correct that two aggregates should use two framework instances. If these are running on the same server, the easiest way to tie them...
Awesome! One of the benefits of CQRS is that the rigid enforcement of DDD rules helps to identify flaws in your domain model early on when it's easy to fix....
@tk-o in practice, I isolate every aggregate into it's own service and (when the design allows) pass events between these services asynchronously via a custom query ([example here](https://github.com/serverlesstechnology/cqrs/issues/14#issuecomment-1005846524)). I prefer...