CustomerInput
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.
Added in Saleor 3.14
CustomerInput.privateMetadata
● [MetadataInput!]
list input miscellaneous
Fields required to update the user private metadata.
Added in Saleor 3.14
CustomerInput.languageCode
● LanguageCodeEnum
enum miscellaneous
User language code.
CustomerInput.externalReference
● String
scalar miscellaneous
External ID of the customer.
Added in Saleor 3.10
CustomerInput.isConfirmed
● Boolean
scalar miscellaneous
User account is confirmed.
Added in Saleor 3.15
Member Of
CustomerBulkUpdateInput
input ● customerUpdate
mutation