mirror of
https://github.com/vercel/commerce.git
synced 2025-03-31 17:25:53 +00:00
16 lines
305 B
TypeScript
16 lines
305 B
TypeScript
const customerCreateMutation = /* GraphQL */ `
|
|
mutation customerCreate($input: CustomerCreateInput!) {
|
|
customerCreate(input: $input) {
|
|
customerUserErrors {
|
|
code
|
|
field
|
|
message
|
|
}
|
|
customer {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
`
|
|
export default customerCreateMutation
|