Skip to content

createLabOrderInput

Autogenerated input type of createLabOrder

Fields

deprecated DO NOT USE
document_id · ID · Required. The ID of the PDF or HL7 document containing the lab results. Needs to be pre-created and have a rel_user_id matching the patient ID
lab · String · Required. The lab panel that was ordered
lab_company · String · Required. The lab company who processed the order
orderer_id · ID · Required. The ID of the user in Healthie who ordered the lab
patient_id · ID · Required. The ID of the patient
lab_observation_requests · [LabObservationRequestInput] · A list of the discrete data points that will be collected in the lab panel
submission · SubmissionInput · Optional. Additional arguments for submitting orders

Used By

Definition

"""
Autogenerated input type of createLabOrder
"""
input createLabOrderInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
Required. The ID of the PDF or HL7 document containing the lab results. Needs to be pre-created and have a rel_user_id matching the patient ID
"""
document_id: ID
"""
Required. The lab panel that was ordered
"""
lab: String
"""
Required. The lab company who processed the order
"""
lab_company: String
"""
Required. The ID of the user in Healthie who ordered the lab
"""
orderer_id: ID
"""
Required. The ID of the patient
"""
patient_id: ID
"""
A list of the discrete data points that will be collected in the lab panel
"""
lab_observation_requests: [LabObservationRequestInput]
"""
Optional. Additional arguments for submitting orders
"""
submission: SubmissionInput
}