I am using Axon with Spring boot and will like to list an event history for an aggregate.
With the event
store -> readEvents(String id)
, we only get events from the last snapshot.
eventStore.readEvents(aggregateId).asStream().map(e -> e.getpayload()).collect(Collectors.toList())
How can I read all the events for that aggregate since creation?