Lab Test Report List

Use the labTestReports query to get the list of all lab test reports created within the TeleWellness Portal.

This query must be executed within the member query.

Required Argument

Available fields

The following fields will be displayed in the response:

Status field description

Example

query {
  member(id: "TWVtYmVyOjVlZDk5MjMyLWNhMTMtNGE2NS05MmIyLWZjMDk4ZjgyOWUwNA==") {
    labTestReports {
      edges {
        node {
          id
          testName
          reportPdf
          isVisible
          status
        }
      }
    }
  }
}

Last updated