mirror of
https://github.com/vercel/commerce.git
synced 2025-06-20 06:01:21 +00:00
11 lines
195 B
TypeScript
11 lines
195 B
TypeScript
/* GraphQL */
|
|
export const signupMutation = `
|
|
mutation createCustomer($data: CustomerSignUpDraft!) {
|
|
customerSignUp (draft: $data) {
|
|
customer {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
`
|