1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-12 20:57:51 +00:00
2021-02-05 00:02:39 +02:00

16 lines
305 B
TypeScript

const customerCreateMutation = /* GraphQL */ `
mutation customerCreate($input: CustomerCreateInput!) {
customerCreate(input: $input) {
customerUserErrors {
code
field
message
}
customer {
id
}
}
}
`
export default customerCreateMutation