Files
commerce/framework/vendure/utils/mutations/verify-customer-account-mutation.ts
2021-09-30 09:45:57 +07:00

16 lines
360 B
TypeScript

export const verifyCustomerAccountMutaton = /* GraphQL */ `
mutation verifyCustomerAccount($token: String!, $password: String) {
verifyCustomerAccount( token: $token, password: $password) {
__typename
...on CurrentUser {
id
identifier
}
... on ErrorResult {
errorCode
message
}
}
}
`