serverlesstechnology / cqrs

A lightweight, opinionated CQRS and event sourcing framework.
Other
370 stars 40 forks source link

Is there a way to a View that isn't scoped by `aggregate_id`? #63

Closed andoriyu closed 1 year ago

andoriyu commented 1 year ago

Currently, everything is scoped uniquely per id, but in some of my views I want to get all events of a specific type (i.e. if my aggregate is a user, I would like to get a list of users with their metadata.)

andoriyu commented 1 year ago

nvm, I misunderstood how Views work.