OBJECT

User

Properties of the currently logged in User

link GraphQL Schema definition

  • type User {
  • # Cart session id for the current user
  • cartSessionId: ID
  • # A users email address
  • emailAddress: String
  • # A users first name
  • firstName: String
  • id: ID!
  • # The id used to identify the user
  • legacyId: Int
  • # Location session data on user
  • locationData: UserLocation!
  • # Whether the current user is logged in
  • loggedIn: Boolean!
  • selectedCurrency: Currency!
  • seller: Seller
  • # A users surname
  • surname: String
  • # The date user accepted terms and conditions for marketplacer
  • termsAndConditionsAcceptedAt: ISO8601DateTime
  • # Username displayed on navbar for current user
  • userAccountName: String
  • # A users username
  • username: String
  • }