CustomerInput Input Type
No description
input CustomerInput {
  defaultBillingAddress: AddressInput
  defaultShippingAddress: AddressInput
  firstName: String
  lastName: String
  email: String
  isActive: Boolean
  note: String
  metadata: [MetadataInput!]
  privateMetadata: [MetadataInput!]
  languageCode: LanguageCodeEnum
  externalReference: String
  isConfirmed: Boolean
}
Fields
CustomerInput.defaultBillingAddress ● AddressInput input miscellaneous
Billing address of the customer.
CustomerInput.defaultShippingAddress ● AddressInput input miscellaneous
Shipping address of the customer.
CustomerInput.firstName ● String scalar miscellaneous
Given name.
CustomerInput.lastName ● String scalar miscellaneous
Family name.
CustomerInput.email ● String scalar miscellaneous
The unique email address of the user.
CustomerInput.isActive ● Boolean scalar miscellaneous
User account is active.
CustomerInput.note ● String scalar miscellaneous
A note about the user.
CustomerInput.metadata ● [MetadataInput!] list input miscellaneous
Fields required to update the user metadata.
CustomerInput.privateMetadata ● [MetadataInput!] list input miscellaneous
Fields required to update the user private metadata.
CustomerInput.languageCode ● LanguageCodeEnum enum miscellaneous
User language code.
CustomerInput.externalReference ● String scalar miscellaneous
External ID of the customer.
CustomerInput.isConfirmed ● Boolean scalar miscellaneous
User account is confirmed.
Member Of
CustomerBulkUpdateInput input ● customerUpdate mutation