UserCreateInput Input Type
No description
input UserCreateInput {
  defaultBillingAddress: AddressInput
  defaultShippingAddress: AddressInput
  firstName: String
  lastName: String
  email: String
  isActive: Boolean
  note: String
  metadata: [MetadataInput!]
  privateMetadata: [MetadataInput!]
  languageCode: LanguageCodeEnum
  externalReference: String
  isConfirmed: Boolean
  redirectUrl: String
  channel: String
}
Fields
UserCreateInput.defaultBillingAddress ● AddressInput input miscellaneous
Billing address of the customer.
UserCreateInput.defaultShippingAddress ● AddressInput input miscellaneous
Shipping address of the customer.
UserCreateInput.firstName ● String scalar miscellaneous
Given name.
UserCreateInput.lastName ● String scalar miscellaneous
Family name.
UserCreateInput.email ● String scalar miscellaneous
The unique email address of the user.
UserCreateInput.isActive ● Boolean scalar miscellaneous
User account is active.
UserCreateInput.note ● String scalar miscellaneous
A note about the user.
UserCreateInput.metadata ● [MetadataInput!] list input miscellaneous
Fields required to update the user metadata.
UserCreateInput.privateMetadata ● [MetadataInput!] list input miscellaneous
Fields required to update the user private metadata.
UserCreateInput.languageCode ● LanguageCodeEnum enum miscellaneous
User language code.
UserCreateInput.externalReference ● String scalar miscellaneous
External ID of the customer.
UserCreateInput.isConfirmed ● Boolean scalar miscellaneous
User account is confirmed.
DEPRECATED: this field will be removed in Saleor 4.0.
The user will be always set as unconfirmed. The confirmation will take place when the user sets the password.
UserCreateInput.redirectUrl ● String scalar miscellaneous
URL of a view where users should be redirected to set the password. URL in RFC 1808 format.
UserCreateInput.channel ● String scalar miscellaneous
Slug of a channel which will be used for notify user. Optional when only one channel exists.
Member Of
customerCreate mutation