OBJECT

LabOrder

Lab Order Object

link GraphQL Schema definition

  • type LabOrder {
  • # abnormality in results
  • abnormal: Boolean
  • # Confirmation Code of Scheduled Appointment
  • appt_confirmation_code: String
  • # Date Lab Order was Placed
  • created_at: String!
  • # Pagination cursor
  • cursor: Cursor!
  • # Get result document
  • document: Document
  • # The unique identifier of the order
  • id: ID!
  • # Order integration (lab_testing_api, evexia, rupa)
  • integration: String!
  • # Name of the lab
  • lab: String
  • # Name of the lab
  • lab_company: String
  • # Lab options included in lab order
  • lab_options: [LabOption!]!
  • # Lab results
  • lab_results: [LabResult!]!
  • # Order ID
  • lta_id: String
  • # The normalized status of the order
  • normalized_status: String
  • # Provider for lab order
  • orderer: User
  • # Patient for lab order
  • patient: User
  • # Get most recent pdf document
  • pdf_document: Document
  • # Order ID on the rupa health
  • rupa_order_id: String
  • # Show lab result with PDF document
  • show_pdf_messages: Boolean
  • # Status of the Lab Order
  • status: String
  • # Date of Test
  • test_date: String
  • # Date Lab Order was updated
  • updated_at: String!
  • # Link to view the rupa order
  • view_rupa_order_url: String
  • }