Update Lab Test Report
Available Arguments
Available Fields
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
}
}
}
{
"data": {
"updateLabTestReport": {
"success": true,
"message": "Lab test report updated",
"report": {
"id": "TGFiVGVzdFJlcG9ydDo3MA==",
"testName": "Blood Test",
"reportPdf": "lab-test/5ed99232-ca13-4a65-92b2-fc098f829e04/biEd0KdheG7A.pdf",
"title": "Lab Report",
"testDate": "2022-02-01T05:00:00+00:00"
}
}
}
}Last updated