Alexander Miertsch
Alexander Miertsch
@bweston92 uses prooph/micro which is good to take a look on how you would work with a process manager in a functional world. @bweston92 > Injecting the command bus is...
The question is: **Why do we need the aggregate state in the process manager?** The aggregate handles invariantes and therefor uses its state to make decisions. Like shown by @prolic...
Addition: I've used functions in the example to avoid boilerplate, but the OO version would pretty much look the same just with classes. It is the same simple concept.
@lunetics Did you take a look at the implementation of the process manager of the linked repo? The `OrderProcessManager` still reacts on domain events and **IS NOT** driven by its...
Hey @pmartelletti , very interesting problem space ;) thx for sharing. You're right. We're really busy at the moment. We joined a developer team to help them with their core...
One advice for your real world project: Try to set up a module system similar to the one I've explained here: https://proophsoftware.github.io/fee-office/intro/module_system.html#1-3 Not sure how to do it with Laravel,...
@pmartelletti I guess you don't have a projection registered, yet. Did you do the tutorial? Registering Projections: https://proophsoftware.github.io/event-machine/tutorial/partIV.html#2-5-1 Just add a first aggregate and activate an AggregateProjection like described in...
yeah, I realized that we need a better error reporting here for the devs who want to start with a fully working system right away ;) I keep the issue...
Here is the corresponding release with information in linked PRs: https://github.com/proophsoftware/event-machine/releases/tag/v0.14.0 in short: GraphQL does not include format validation, so JSON Schema was always main target. GraphQL has a nice...
That's basically a good idea. I always try to link related issues in releases. GraphQL was dropped in the experimentation phase. I thought we had a discussion somewhere in an...