mirror of
https://github.com/vercel/commerce.git
synced 2025-05-21 00:46:59 +00:00
16 lines
270 B
TypeScript
16 lines
270 B
TypeScript
export const AccountCreate = /* GraphQL */ `
|
|
mutation AccountCreate($input: AccountRegisterInput!) {
|
|
accountRegister(input: $input) {
|
|
errors {
|
|
code
|
|
field
|
|
message
|
|
}
|
|
user {
|
|
email
|
|
isActive
|
|
}
|
|
}
|
|
}
|
|
`
|