mirror of
https://github.com/vercel/commerce.git
synced 2025-06-20 14:11:20 +00:00
17 lines
311 B
TypeScript
17 lines
311 B
TypeScript
const customerCreateMutation = /* GraphQL */ `
|
|
mutation customerCreate($input: AccountRegisterInput!) {
|
|
accountRegister(input: $input) {
|
|
errors {
|
|
code
|
|
field
|
|
message
|
|
}
|
|
user {
|
|
email
|
|
isActive
|
|
}
|
|
}
|
|
}
|
|
`
|
|
export default customerCreateMutation
|