Files
web-frontend/graphql/operations/auth/consume-login-token.graphql
T

16 lines
218 B
GraphQL

mutation ConsumeLoginToken($token: String!) {
consumeLoginToken(token: $token) {
accessToken
expiresAt
user {
id
email
fullName
role
company {
id
}
}
}
}