Skip to content

Commit

Permalink
Modified educator signup query to allow fullName
Browse files Browse the repository at this point in the history
EPO-7830
  • Loading branch information
ericdrosas87 authored and alexgoff committed Mar 16, 2023
1 parent 71fd25b commit 8c25aba
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions lib/api/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,21 +131,17 @@ export async function registerEducator({
registerEducators(
email: "${email}"
password: "${password}"
user: {
firstName: "${firstName}"
lastName: "${lastName}"
}
) {
jwt
jwtExpiresAt
refreshToken
refreshTokenExpiresAt
fullName: "${firstName} ${lastName}") {
user {
status
... on User {
requestDeletion
}
}
jwt
jwtExpiresAt
refreshToken
refreshTokenExpiresAt
}
}
`;
Expand Down

0 comments on commit 8c25aba

Please sign in to comment.