From e9f78d359f53ce043e9edf69eadde720ee56552f Mon Sep 17 00:00:00 2001 From: carissa-tang <69697180+carissa-tang@users.noreply.github.com> Date: Fri, 24 Nov 2023 11:23:11 -0800 Subject: [PATCH] fix: make school metadata optional --- backend/graphql/types/authType.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/backend/graphql/types/authType.ts b/backend/graphql/types/authType.ts index 511cb5b3c..761bd911c 100644 --- a/backend/graphql/types/authType.ts +++ b/backend/graphql/types/authType.ts @@ -12,12 +12,12 @@ const authType = gql` } input SchoolMetadataInput { - name: String! - id: ID! - country: String! - city: String! - district: String! - address: String! + name: String + id: ID + country: String + city: String + district: String + address: String } input RegisterTeacherDTO {