Skip to content

MedicationType

Medication belonging to client

Fields

active · Boolean · Indicates if medication is still active (medication can also be inactive if current date doesn't fall between start and end date)
code · String · CCDA code for this medication
comment · String · Comments entered by provider
created_at · String! · required · The time the medication was created
directions · String · Directions to use medication entered by provider
dosage · String · Dosage of medication entered by provider
end_date · String · last date patient should be able to use medication
frequency · String · Frequency of this medication
id · ID! · required · The unique identifier of the medication
mirrored · Boolean! · required · If the medication is synchronized with an external system (e.g., an E-Rx system)
name · String · Name of medication
requires_consolidation · Boolean · When true, this object must be consolidated as part of a CCDA Ingest
route · String · The way this medication is administered
start_date · String · First active date of medication
updated_at · String · The last time the medication was updated
user_id · ID · User ID of the client this medication belongs to

Used By

Definition

"""
Medication belonging to client
"""
type MedicationType {
"""
Indicates if medication is still active (medication can also be inactive if current date doesn't fall between start and end date)
"""
active: Boolean
"""
CCDA code for this medication
"""
code: String
"""
Comments entered by provider
"""
comment: String
"""
The time the medication was created
"""
created_at: String!
"""
Directions to use medication entered by provider
"""
directions: String
"""
Dosage of medication entered by provider
"""
dosage: String
"""
last date patient should be able to use medication
"""
end_date: String
"""
Frequency of this medication
"""
frequency: String
"""
The unique identifier of the medication
"""
id: ID!
"""
If the medication is synchronized with an external system (e.g., an E-Rx system)
"""
mirrored: Boolean!
"""
Name of medication
"""
name: String
"""
When true, this object must be consolidated as part of a CCDA Ingest
"""
requires_consolidation: Boolean
"""
The way this medication is administered
"""
route: String
"""
First active date of medication
"""
start_date: String
"""
The last time the medication was updated
"""
updated_at: String
"""
User ID of the client this medication belongs to
"""
user_id: ID
}