Improve member search 2#98
Merged
Merged
Conversation
kkartunov
approved these changes
May 13, 2026
There was a problem hiding this comment.
Pull request overview
This PR refactors the member search query to reduce repeated lookups, tighten correctness around “active” members, normalize country filtering, and reduce pagination overhead.
Changes:
- Preloads skill event type IDs / engagement source type ID on module init and uses IDs instead of name-based joins.
- Introduces an
active_membersCTE and reuses it across skill/event/verification activity CTEs. - Normalizes country inputs to uppercase and adjusts SQL filters accordingly; replaces exact count query with an estimated “total”.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 7 comments.
| File | Description |
|---|---|
src/reports/member/member-search.service.ts |
Refactors SQL CTEs/joins for active-only filtering, cached IDs for win/engagement detection, country normalization, and replaces COUNT-based pagination total. |
.circleci/config.yml |
Adds the feature branch name to the CircleCI workflow branch allowlist. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+397
to
399
| LEFT JOIN user_match_data umd ON umd.user_id = m."userId" | ||
| LEFT JOIN verified_via_trolley vt ON vt.user_id = m."userId" | ||
| LEFT JOIN member_address maddr ON maddr."userId" = m."userId" |
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.
This pull request introduces several improvements and fixes to the member search functionality, with a focus on query efficiency, correctness, and maintainability. The main changes include refactoring how event type IDs are loaded and used, ensuring only active members are considered throughout the query, improving country code normalization and filtering, and simplifying the pagination/count logic.
Database query improvements:
winEventTypeIdsandengagementSourceTypeIdon module initialization using theOnModuleInitlifecycle, reducing repeated database lookups and improving performance.active_membersCTE and referencing it throughout, which increases accuracy and efficiency.Country code and filtering fixes:
SQL join and filter logic adjustments:
INNER JOINstatements for better clarity and maintainability.LOWER()calls in display mode name checks, as the data is now expected to be case-sensitive and consistent.Pagination and counting simplification: