Skip to main content

RegisterCustomerInput

Input for registering a new customer.

input RegisterCustomerInput {
firstName: String
middleName: String
lastName: String
gender: Gender
email: String
phone: String
mobile: String
dateOfBirth: String
mailingList: YesNo
primaryLanguage: String
parentId: Int!
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.primaryLanguage ● String scalar

The primary language of the customer.

RegisterCustomerInput.parentId ● Int! non-null scalar

The id of the usergroup the customer should be created in.

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