Skip to content

MedicationOptionType

Medication query result

Fields

dosage_options · [DosageType] · The dosage options of the medication option
dosages · [String!] · The dosages of the medication option
id · ID! · required · The unique identifier of the medication option
monograph · String · The monograph of the medication option
name · String! · required · The name of the medication option

Used By

Definition

"""
Medication query result
"""
type MedicationOptionType {
"""
The dosage options of the medication option
"""
dosage_options: [DosageType]
"""
The dosages of the medication option
"""
dosages: [String!]
"""
The unique identifier of the medication option
"""
id: ID!
"""
The monograph of the medication option
"""
monograph(
"""
The format of the monograph
"""
format: MonographFormat = HTML
): String
"""
The name of the medication option
"""
name: String!
}