From dfbcaa7c374e9cc38186cffbf8de920e4f38a6f3 Mon Sep 17 00:00:00 2001 From: Alec M Date: Tue, 7 May 2024 10:16:37 -0400 Subject: [PATCH] Remove unused selection from query --- src/graphql/getSubmission.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/graphql/getSubmission.ts b/src/graphql/getSubmission.ts index 771813987..6c9af6253 100644 --- a/src/graphql/getSubmission.ts +++ b/src/graphql/getSubmission.ts @@ -64,10 +64,6 @@ export const query = gql` error } } - - totalQCResults: submissionQCResults(_id: $id, first: 1) { - total - } } `; @@ -82,10 +78,4 @@ export type Response = { submissionStats: { stats: SubmissionStatistic[]; }; - /** - * The total number of QC results for the submission - */ - totalQCResults: { - total: number; - }; };