Skip to content

PrescriptionMedicationQueryFiltersInput

Input type for filtering prescription medications

Fields

end_date_from · ISO8601Date · The start of the end date filter
end_date_to · ISO8601Date · The end of the end date filter
start_date_from · ISO8601Date · The start of the start date filter
start_date_to · ISO8601Date · The end of the start date filter
normalized_status · [PrescriptionMedicationStatus] · The normalized status of the medication (e.g., active, inactive, pending)
type · [PrescriptionMedicationTypeEnum] · The types of medications (e.g., prescription, medication)

Used By

Definition

"""
Input type for filtering prescription medications
"""
input PrescriptionMedicationQueryFiltersInput {
"""
The start of the end date filter
"""
end_date_from: ISO8601Date
"""
The end of the end date filter
"""
end_date_to: ISO8601Date
"""
The start of the start date filter
"""
start_date_from: ISO8601Date
"""
The end of the start date filter
"""
start_date_to: ISO8601Date
"""
The normalized status of the medication (e.g., active, inactive, pending)
"""
normalized_status: [PrescriptionMedicationStatus]
"""
The types of medications (e.g., prescription, medication)
"""
type: [PrescriptionMedicationTypeEnum]
}