16 lines
228 B
GraphQL
16 lines
228 B
GraphQL
mutation VerifyLoginCode($input: VerifyLoginCodeInput!) {
|
|
verifyLoginCode(input: $input) {
|
|
accessToken
|
|
expiresAt
|
|
user {
|
|
id
|
|
email
|
|
fullName
|
|
role
|
|
company {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|