Update Lab Test Report

Use the updateLabTestReport to update a lab test report assigned to a member.

Available Arguments

Available Fields

The following fields will be displayed in the response:

Example

mutation {
  updateLabTestReport(
    id: "TGFiVGVzdFJlcG9ydDo3MA=="
    testName: "Blood Test"
    labName: "Cleveland Lab"
    title: "Lab Report"
    testDate: "2022-02-01T05:00:00+00:00"
  ) {
    success
    message
    report {
      id
      testName
      reportPdf
      title
      testDate
    }
  }
}

Last updated