Replace getEventById with EventQuery for event retrieval#41
Merged
Conversation
The eventmodeling library no longer calls getEventById from the eventstore library. The two example apps now query all AccountOpened events and filter by event ID instead. https://claude.ai/code/session_01LPcFaA1bRJrcZjP4Rh3Mwe
vanrogu
added a commit
that referenced
this pull request
Feb 22, 2026
* Replace getEventById usage with query-based event lookup in examples The eventmodeling library no longer calls getEventById from the eventstore library. The two example apps now query all AccountOpened events and filter by event ID instead. https://claude.ai/code/session_01LPcFaA1bRJrcZjP4Rh3Mwe * fixed examples by adding bounded context start --------- Co-authored-by: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Refactored event retrieval logic to use the
EventQueryAPI instead of the deprecatedgetEventByIdmethod across banking examples.Key Changes
eventStream.getEventById()calls witheventStream.query(EventQuery.forEvents(...))pattern in two example classesTags,EventQuery, andEventTypesFilterto support the new query-based approachEventTypesFilter.of(AccountOpened.class)for type-safe filtering.findFirst()call to retrieve the first matching event from the query results.filter(e -> e.reference().id().equals(ref.get().id()))to match the original behaviorImplementation Details
The changes modernize the event retrieval pattern by:
EventQueryAPI that supports filtering by event types and tagshttps://claude.ai/code/session_01LPcFaA1bRJrcZjP4Rh3Mwe