OBJECT

Customer

A customer of the shop

link GraphQL Schema definition

  • type Customer {
  • # Unique identifier for the customer
  • id: ID!
  • # The customer name
  • name: String
  • # The (unverified) email associated with the customer
  • email: String
  • # The URL of the customer's avatar image
  • avatarUrl: String
  • # The customer's phone number
  • phoneNumber: String
  • # The customer's available account balance
  • accountBalance: Float!
  • # Orders placed by this customer
  • orders: [Order!]!
  • # The waitlist items for the customer
  • waitlistItems: [WaitlistItem!]!
  • }