mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
16 lines
360 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|
|
`
|