4
0
forked from crowetic/commerce
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