Skip to content

Referral

A referral

Fields

created_at · String! · required · created at
id · ID! · required · The unique identifier of the referral
metadata · String · A serialized JSON string of metadata. Maximum character limit of 128,000.
referral_reason · String · The reason the client was referred to the physician
referring_physician · ReferringPhysician · The referring physician
referring_physician_id · ID · id of the referring physician
updated_at · String! · required · updated at
user · User · The referred client
user_id · ID · id of the referred client

Used By

Definition

"""
A referral
"""
type Referral {
"""
created at
"""
created_at: String!
"""
The unique identifier of the referral
"""
id: ID!
"""
A serialized JSON string of metadata. Maximum character limit of 128,000.
"""
metadata: String
"""
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
}