Update Lab Test Report
Last updated
Was this helpful?
Was this helpful?
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",
}
}
}
}mutation {
updateLabTestReport(
id: "TGFiVGVzdFJlcG9ydDo3MA=="
testName: "Blood Test"
labName: "Cleveland Lab"
title: "Lab Report"
testDate: "2022-02-01T05:00:00+00:00"
alert: true,
alertText: "Validation Error",
alertStatus: "REVIEWED",
alertAction: "CONTACTED"
) {
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",
"alert": true,
"alertText":"Validation Error",
"alertStatus":"REVIEWED",
"alertAction":"CONTACTED"
}
}
}
}mutation {
updateLabTestReport(
id: "TGFiVGVzdFJlcG9ydDo3MA=="
testName: "Blood Test with video"
videoUrl: "www.samplevideourl.com"
) {
success
message
report {
id
testName
videoUrl
}
}
}{
"data": {
"updateLabTestReport": {
"success": true,
"message": "Lab test report updated",
"report": {
"id": "TGFiVGVzdFJlcG9ydDo3MA==",
"testName": "Blood Test with video",
"videoUrl":"www.samplevideourl.com"
}
}
}
}