Files
web-frontend/graphql/operations/auth/consume-login-token.graphql
2026-04-02 15:33:54 +07:00

16 lines
218 B
GraphQL

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