Skip to main content

CustomerInput

Input for creating a new customer

input CustomerInput {
firstName: String
middleName: String
lastName: String
gender: Gender
email: String
phone: String
mobile: String
dateOfBirth: String
mailingList: YesNo
primaryLanguage: String
parentId: Int!
}

Fields

CustomerInput.firstName ● String scalar

CustomerInput.middleName ● String scalar

CustomerInput.lastName ● String scalar

CustomerInput.gender ● Gender enum

CustomerInput.email ● String scalar

CustomerInput.phone ● String scalar

CustomerInput.mobile ● String scalar

CustomerInput.dateOfBirth ● String scalar

CustomerInput.mailingList ● YesNo enum

CustomerInput.primaryLanguage ● String scalar

The primary language of the customer.

CustomerInput.parentId ● Int! non-null scalar

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

Member Of

customerCreate mutation