RegisterCustomerInput
No description
input RegisterCustomerInput {
firstName: String
middleName: String
lastName: String
gender: Gender
email: String
phone: String
mobile: String
dateOfBirth: String
mailingList: YesNo
parentId: Int
primaryLanguage: String
password: String
}
Fields
RegisterCustomerInput.firstName
● String
scalar
RegisterCustomerInput.middleName
● String
scalar
RegisterCustomerInput.lastName
● String
scalar
RegisterCustomerInput.gender
● Gender
enum
RegisterCustomerInput.email
● String
scalar
RegisterCustomerInput.phone
● String
scalar
RegisterCustomerInput.mobile
● String
scalar
RegisterCustomerInput.dateOfBirth
● String
scalar
RegisterCustomerInput.mailingList
● YesNo
enum
RegisterCustomerInput.parentId
● Int
scalar
The id of the usergroup the customer should be created in.
RegisterCustomerInput.primaryLanguage
● String
scalar
The primary language of the customer.
RegisterCustomerInput.password
● String
scalar
Optionally create a prefilled password. When omitted the customer can set a new password using password reset(link)
Member Of
customerRegister
mutation