saleor: remove unused code

This commit is contained in:
Zaiste
2021-05-11 14:28:01 +02:00
parent e98a9f4d6f
commit 3873b48c59
7 changed files with 6 additions and 75 deletions

View File

@@ -1,13 +1,14 @@
const customerCreateMutation = /* GraphQL */ `
mutation customerCreate($input: UserCreateInput!) {
customerCreate(input: $input) {
mutation customerCreate($input: AccountRegisterInput!) {
accountRegister(input: $input) {
errors {
code
field
message
}
customer {
id
user {
email
isActive
}
}
}