OBJECT

Referral

A referral

link GraphQL Schema definition

  • type Referral {
  • # created at
  • created_at: String!
  • # The unique identifier of the referral
  • id: ID!
  • # The reason the client was referred to the physician
  • referral_reason: String
  • # The referring physician
  • referring_physician: ReferringPhysician
  • # id of the referring physician
  • referring_physician_id: ID
  • # updated at
  • updated_at: String!
  • # The referred client
  • user: User
  • # id of the referred client
  • user_id: ID
  • }