OBJECT

LabOrder

Lab Order Object

link GraphQL Schema definition

  • type LabOrder {
  • # Confirmation Code of Scheduled Appointment
  • appt_confirmation_code: String
  • # Date Lab Order was Placed
  • created_at: String
  • id: ID!
  • # Order integration (lab_testing_api, evexia, rupa)
  • integration: String
  • # Name of the lab test
  • lab: String
  • # Name of the lab
  • lab_company: String
  • # Lab options included in lab order
  • lab_options: [LabOption]!
  • # Order ID
  • lta_id: String
  • normalized_status: String
  • # Provider for lab order
  • orderer: User
  • # Patient for lab order
  • patient: User
  • # Order ID on the rupa health
  • rupa_order_id: String
  • # 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
  • }