start customer auth & signup

This commit is contained in:
cond0r
2021-02-05 00:02:39 +02:00
parent 2a29218285
commit 57ebfe42f5
12 changed files with 173 additions and 90 deletions

View File

@@ -0,0 +1,15 @@
const customerCreateMutation = /* GraphQL */ `
mutation customerCreate($input: CustomerCreateInput!) {
customerCreate(input: $input) {
customerUserErrors {
code
field
message
}
customer {
id
}
}
}
`
export default customerCreateMutation