OBJECT

SdUser

INTERNAL -- Data on the User Object

link GraphQL Schema definition

  • type SdUser {
  • # Whether the user is active
  • active: Boolean
  • # Cursor for User Pagination
  • cursor: String!
  • # The dietitian of the user
  • dietitian: SdUser
  • # The email of the user
  • email: String
  • # The full name of the user
  • full_name: String
  • # The unique identifier of the user
  • id: ID!
  • # Whether the user is a patient
  • is_patient: Boolean
  • # The last name of the user
  • last_name: String
  • # Other organization members.
  • organization: SdOrg
  • # The organization membership of the user
  • organization_membership: SdOrganizationMembership
  • # The stripe customer details of the user
  • stripe_customer_details: [StripeCustomerDetail!]
  • # The stripe id of the user
  • stripe_id: String
  • # The stripe person id of the user
  • stripe_person_id: String
  • # Returns the subscription for this user
  • subscription: SubscriptionInstance
  • # The total patient count of the user
  • total_patient_count: Int
  • # The whitelabel setting of the user
  • whitelabel_setting: WhitelabelSetting
  • }