Skip to content

medications

Fetch an array of medications for a given patient

Arguments

unreconciled_from_ccda_ingest · Boolean · When true, only unreconciled objects are returned. Otherwise, they are not included

Returns

[MedicationType!]

Example

query medications(
$active: Boolean
$patient_id: ID
$unreconciled_from_ccda_ingest: Boolean
) {
medications(
active: $active
patient_id: $patient_id
unreconciled_from_ccda_ingest: $unreconciled_from_ccda_ingest
) {
active
code
comment
created_at
directions
dosage
end_date
frequency
id
mirrored
name
requires_consolidation
route
start_date
updated_at
user_id
}
}