mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
20 lines
456 B
TypeScript
20 lines
456 B
TypeScript
const customerActivateByUrlMutation = /* GraphQL */ `
|
|
mutation customerActivateByUrl($activationUrl: URL!, $password: String!) {
|
|
customerActivateByUrl(activationUrl: $activationUrl, password: $password) {
|
|
customer {
|
|
id
|
|
}
|
|
customerAccessToken {
|
|
accessToken
|
|
expiresAt
|
|
}
|
|
customerUserErrors {
|
|
code
|
|
field
|
|
message
|
|
}
|
|
}
|
|
}
|
|
`
|
|
export default customerActivateByUrlMutation
|