Microservices - Event-Driven Architecture
Consider these events in an event store:
1: AccountOpened {accountId: 5, owner: 'Bob'}
2: OwnerNameUpdated {accountId: 5, owner: 'Robert'}
What is the account owner's name after replaying these events?
1: AccountOpened {accountId: 5, owner: 'Bob'}
2: OwnerNameUpdated {accountId: 5, owner: 'Robert'}
What is the account owner's name after replaying these events?
