Skip to content

Commit b6c3e3f

Browse files
committed
modified gql type
1 parent 50f844f commit b6c3e3f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

backend/typescript/graphql/types/userType.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const userType = gql`
1111
firstName: String!
1212
lastName: String!
1313
email: String!
14+
position: String
1415
role: Role!
1516
}
1617
@@ -19,13 +20,15 @@ const userType = gql`
1920
lastName: String!
2021
email: String!
2122
role: Role!
23+
position: String
2224
password: String!
2325
}
2426
2527
input UpdateUserDTO {
2628
firstName: String!
2729
lastName: String!
2830
email: String!
31+
position: String
2932
role: Role!
3033
}
3134

0 commit comments

Comments
 (0)