mirror of
https://github.com/vercel/commerce.git
synced 2025-06-18 21:21:21 +00:00
20 lines
408 B
TypeScript
20 lines
408 B
TypeScript
const customerActivateMutation = /* GraphQL */ `
|
|
mutation customerActivate($id: ID!, $input: CustomerActivateInput!) {
|
|
customerActivate(id: $id, input: $input) {
|
|
customer {
|
|
id
|
|
}
|
|
customerAccessToken {
|
|
accessToken
|
|
expiresAt
|
|
}
|
|
customerUserErrors {
|
|
code
|
|
field
|
|
message
|
|
}
|
|
}
|
|
}
|
|
`
|
|
export default customerActivateMutation
|