[INTF25] Build Mutator to Create Reviewed Applicant Record#84
Merged
isabellehuangg merged 14 commits intomainfrom Nov 22, 2025
Merged
[INTF25] Build Mutator to Create Reviewed Applicant Record#84isabellehuangg merged 14 commits intomainfrom
isabellehuangg merged 14 commits intomainfrom
Conversation
backend/typescript/types.ts
Outdated
Comment on lines
218
to
221
| export type DeleteReviewedApplicantRecord = { | ||
| applicantRecordId: string; | ||
| reviewerId: number; | ||
| } |
Contributor
There was a problem hiding this comment.
nit: just to keep with naming conventions, this type should be DeleteReviewedApplicantRecord
Contributor
There was a problem hiding this comment.
DeleteReviewedApplicantRecordDTO
backend/typescript/graphql/index.ts
Outdated
Comment on lines
121
to
124
| changeRating: authorizedByAllRoles(), | ||
| changeSkillCategory: authorizedByAllRoles(), | ||
| updateApplications: authorizedByAllRoles(), | ||
| modifyFinalComments: authorizedByAllRoles(), |
Contributor
There was a problem hiding this comment.
I think this is legacy code I deleted in another PR... would you mind merging to main to get rid of this LOL, sorry I forgot everyone to pull main when I merged that PR in
gavxue
approved these changes
Nov 22, 2025
| return record.toJSON() as ReviewedApplicantRecordDTO; | ||
| } catch (error: unknown) { | ||
| Logger.error( | ||
| `Failed to bulk create reviewed applicant records. Reason = ${getErrorMessage( |
Collaborator
There was a problem hiding this comment.
nit: error message should be "failed to delete"
| ); | ||
| } catch (error: unknown) { | ||
| Logger.error( | ||
| `Failed to bulk create reviewed applicant records. Reason = ${getErrorMessage( |
Collaborator
There was a problem hiding this comment.
nit: error message should be "failed to bulk delete"
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.
Notion ticket link
Ticket Name
Implementation description
backend/typescript/graphql/index.tsIn the graphQL playground, I ran the following:
What should reviewers focus on?
backend/typescript/graphql/index.tsChecklist