UserCreateInput
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
redirectUrl: String
channel: String
}
Fields
UserCreateInput.defaultBillingAddress ● AddressInput input
Billing address of the customer.
UserCreateInput.defaultShippingAddress ● AddressInput input
Shipping address of the customer.
UserCreateInput.firstName ● String scalar
Given name.
UserCreateInput.lastName ● String scalar
Family name.
UserCreateInput.email ● String scalar
The unique email address of the user.
UserCreateInput.isActive ● Boolean scalar
User account is active.
UserCreateInput.note ● String scalar
A note about the user.
UserCreateInput.metadata ● [MetadataInput!] list input
Fields required to update the user metadata.
Added in Saleor 3.14
UserCreateInput.privateMetadata ● [MetadataInput!] list input
Fields required to update the user private metadata.
Added in Saleor 3.14
UserCreateInput.languageCode ● LanguageCodeEnum enum
User language code.
UserCreateInput.externalReference ● String scalar
External ID of the customer.
Added in Saleor 3.10
UserCreateInput.redirectUrl ● String scalar
URL of a view where users should be redirected to set the password. URL in RFC 1808 format.
UserCreateInput.channel ● String scalar
Slug of a channel which will be used for notify user. Optional when only one channel exists.
Member of
customerCreate mutation
Was this page helpful?