From f3cf06571959e18ccbf73f18ca1e57a79294dc08 Mon Sep 17 00:00:00 2001 From: Alec M Date: Thu, 29 Feb 2024 15:13:24 -0500 Subject: [PATCH] Remove CRDC_ID from Submission Schema --- src/graphql/submissionQCResults.ts | 1 - src/types/Submissions.d.ts | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/graphql/submissionQCResults.ts b/src/graphql/submissionQCResults.ts index 6ec05ff0..ccb30730 100644 --- a/src/graphql/submissionQCResults.ts +++ b/src/graphql/submissionQCResults.ts @@ -29,7 +29,6 @@ export const query = gql` batchID displayID nodeID - CRDC_ID severity uploadedDate validatedDate diff --git a/src/types/Submissions.d.ts b/src/types/Submissions.d.ts index ff8a2b37..b987469d 100644 --- a/src/types/Submissions.d.ts +++ b/src/types/Submissions.d.ts @@ -179,7 +179,6 @@ type QCResult = { batchID: string; displayID: number; nodeID: string; - CRDC_ID: string; severity: "Error" | "Warning"; // [Error, Warning] uploadedDate: string; // batch.updatedAt validatedDate: string; @@ -210,7 +209,6 @@ type DataRecord = { // relationshipProps: [RelationshipProperty] # for future use // rawData: RawData s3FileInfo: S3FileInfo; // only for "file" types, should be null for other nodes - CRDC_ID: string; }; type SubmissionStatistic = {