Replace email with name on user profile

This commit is contained in:
Kurt Hutten
2020-11-06 06:43:16 +11:00
parent 2b6af01767
commit 07296d0a23
12 changed files with 163 additions and 18 deletions

View File

@@ -3,6 +3,7 @@ export const schema = gql`
id: String!
userName: String!
email: String!
name: String
createdAt: DateTime!
updatedAt: DateTime!
image: String
@@ -21,6 +22,7 @@ export const schema = gql`
input CreateUserInput {
userName: String!
email: String!
name: String
image: String
bio: String
}
@@ -28,6 +30,7 @@ export const schema = gql`
input UpdateUserInput {
userName: String
email: String
name: String
image: String
bio: String
}