User
Represents user data.
type User implements Node, ObjectWithMetadata {
id: ID!
privateMetadata: [MetadataItem!]!
privateMetafield(key: String!): String
privateMetafields(keys: [String!]): Metadata
metadata: [MetadataItem!]!
metafield(key: String!): String
metafields(keys: [String!]): Metadata
email: String!
firstName: String!
lastName: String!
isStaff: Boolean!
isActive: Boolean!
addresses: [Address!]!
checkout: Checkout @deprecated
checkoutTokens(channel: String): [UUID!] @deprecated
checkoutIds(channel: String): [ID!]
checkouts(
channel: String
before: String
after: String
first: Int
last: Int
): CheckoutCountableConnection
giftCards(
before: String
after: String
first: Int
last: Int
): GiftCardCountableConnection
note: String
orders(
before: String
after: String
first: Int
last: Int
): OrderCountableConnection
userPermissions: [UserPermission!]
permissionGroups: [Group!]
editableGroups: [Group!]
accessibleChannels: [Channel!]
restrictedAccessToChannels: Boolean!
avatar(size: Int, format: ThumbnailFormatEnum = ORIGINAL): Image
events: [CustomerEvent!]
storedPaymentSources(channel: String): [PaymentSource!]
languageCode: LanguageCodeEnum!
defaultShippingAddress: Address
defaultBillingAddress: Address
externalReference: String
lastLogin: DateTime
dateJoined: DateTime!
updatedAt: DateTime!
}
Fields
User.id ● ID! non-null scalar
User.privateMetadata ● [MetadataItem!]! non-null object
List of private metadata items. Requires staff permissions to access.
User.privateMetafield ● String scalar
A single key from private metadata. Requires staff permissions to access.
Tip: Use GraphQL aliases to fetch multiple keys.
Added in Saleor 3.3This API is currently in Feature Preview and can be subject to changes at later point.
User.privateMetafield.key●String!non-null scalar
User.privateMetafields ● Metadata scalar
Private metadata. Requires staff permissions to access. Use
Added in Saleor 3.3keysto control which fields you want to include. The default is to include everything.This API is currently in Feature Preview and can be subject to changes at later point.
User.privateMetafields.keys●[String!]list scalar
User.metadata ● [MetadataItem!]! non-null object
List of public metadata items. Can be accessed without permissions.
User.metafield ● String scalar
A single key from public metadata.
Tip: Use GraphQL aliases to fetch multiple keys.
Added in Saleor 3.3This API is currently in Feature Preview and can be subject to changes at later point.
User.metafield.key●String!non-null scalar
User.metafields ● Metadata scalar
Public metadata. Use
Added in Saleor 3.3keysto control which fields you want to include. The default is to include everything.This API is currently in Feature Preview and can be subject to changes at later point.
User.metafields.keys●[String!]list scalar
User.email ● String! non-null scalar
User.firstName ● String! non-null scalar
User.lastName ● String! non-null scalar
User.isStaff ● Boolean! non-null scalar
User.isActive ● Boolean! non-null scalar
User.addresses ● [Address!]! non-null object
List of all user's addresses.
User.checkout ● Checkout deprecated object
DEPRECATEDThis field will be removed in Saleor 4.0. Use the
checkoutTokensfield to fetch the user checkouts.Returns the last open checkout of this user.
User.checkoutTokens ● [UUID!] deprecated list scalar
DEPRECATEDThis field will be removed in Saleor 4.0. Use
checkoutIdsinstead.Returns the checkout UUID's assigned to this user.
User.checkoutTokens.channel●StringscalarSlug of a channel for which the data should be returned.
User.checkoutIds ● [ID!] list scalar
Returns the checkout ID's assigned to this user.
User.checkoutIds.channel●StringscalarSlug of a channel for which the data should be returned.
User.checkouts ● CheckoutCountableConnection object
Returns checkouts assigned to this user.
Added in Saleor 3.8
User.checkouts.channel●StringscalarSlug of a channel for which the data should be returned.
User.checkouts.before ● String scalar
Return the elements in the list that come before the specified cursor.
User.checkouts.after ● String scalar
Return the elements in the list that come after the specified cursor.
User.checkouts.first ● Int scalar
Retrieve the first n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.
User.checkouts.last ● Int scalar
Retrieve the last n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.
User.giftCards ● GiftCardCountableConnection object
List of the user gift cards.
User.giftCards.before●StringscalarReturn the elements in the list that come before the specified cursor.
User.giftCards.after ● String scalar
Return the elements in the list that come after the specified cursor.
User.giftCards.first ● Int scalar
Retrieve the first n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.
User.giftCards.last ● Int scalar
Retrieve the last n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.
User.note ● String scalar
A note about the customer.
User.orders ● OrderCountableConnection object
List of user's orders.
User.orders.before●StringscalarReturn the elements in the list that come before the specified cursor.
User.orders.after ● String scalar
Return the elements in the list that come after the specified cursor.
User.orders.first ● Int scalar
Retrieve the first n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.
User.orders.last ● Int scalar
Retrieve the last n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.
User.userPermissions ● [UserPermission!] list object
List of user's permissions.
User.permissionGroups ● [Group!] list object
List of user's permission groups.
User.editableGroups ● [Group!] list object
List of user's permission groups which user can manage.
User.accessibleChannels ● [Channel!] list object
List of channels the user has access to. The sum of channels from all user groups. If at least one group has
Added in Saleor 3.14restrictedAccessToChannelsset to False - all channels are returned.This API is currently in Feature Preview and can be subject to changes at later point.
User.restrictedAccessToChannels ● Boolean! non-null scalar
Determine if user have restricted access to channels. False if at least one user group has
Added in Saleor 3.14restrictedAccessToChannelsset to False.This API is currently in Feature Preview and can be subject to changes at later point.
User.avatar ● Image object
User.avatar.size●IntscalarDesired longest side the image in pixels. Defaults to 4096. Images are never cropped. Pass 0 to retrieve the original size (not recommended).
User.avatar.format ● ThumbnailFormatEnum enum
The format of the image. When not provided, format of the original image will be used.
Added in Saleor 3.6
User.events ● [CustomerEvent!] list object
List of events associated with the user.
User.storedPaymentSources ● [PaymentSource!] list object
List of stored payment sources.
User.storedPaymentSources.channel●StringscalarSlug of a channel for which the data should be returned.
User.languageCode ● LanguageCodeEnum! non-null enum
User language code.
User.defaultShippingAddress ● Address object
User.defaultBillingAddress ● Address object
User.externalReference ● String scalar
External ID of this user.
Added in Saleor 3.10
User.lastLogin ● DateTime scalar
User.dateJoined ● DateTime! non-null scalar
User.updatedAt ● DateTime! non-null scalar
Interfaces
Node interface
An object with an ID
ObjectWithMetadata interface
Returned by
Member of
AccountAddressCreate object ● AccountAddressDelete object ● AccountAddressUpdate object ● AccountDelete object ● AccountRegister object ● AccountSetDefaultAddress object ● AccountUpdate object ● AddressCreate object ● AddressDelete object ● AddressSetDefault object ● AddressUpdate object ● Checkout object ● ConfirmAccount object ● ConfirmEmailChange object ● CreateToken object ● CustomerBulkResult object ● CustomerCreate object ● CustomerCreated object ● CustomerDelete object ● CustomerEvent object ● CustomerMetadataUpdated object ● CustomerUpdate object ● CustomerUpdated object ● ExportEvent object ● ExportFile object ● ExternalObtainAccessTokens object ● ExternalRefresh object ● ExternalVerify object ● GiftCard object ● GiftCardEvent object ● Group object ● Order object ● OrderEvent object ● OrderGrantedRefund object ● PasswordChange object ● RefreshToken object ● RequestEmailChange object ● SetPassword object ● StaffCreate object ● StaffCreated object ● StaffDelete object ● StaffDeleted object ● StaffNotificationRecipient object ● StaffUpdate object ● StaffUpdated object ● UserAvatarDelete object ● UserAvatarUpdate object ● UserCountableEdge object ● VerifyToken object
Implemented by
_Entity union ● IssuingPrincipal union ● UserOrApp union