forked from crowetic/commerce
15 lines
288 B
TypeScript
15 lines
288 B
TypeScript
export const signupMutation = /* GraphQL */ `
|
|
mutation signup($input: RegisterCustomerInput!) {
|
|
registerCustomerAccount(input: $input) {
|
|
__typename
|
|
... on Success {
|
|
success
|
|
}
|
|
... on ErrorResult {
|
|
errorCode
|
|
message
|
|
}
|
|
}
|
|
}
|
|
`
|