Delete Lab Test Report

Delete a specific lab test report by executing the deleteLabTestReport mutation.

Available Arguments

ArgumentTypeDescription

id

ID!

Unique ID of the lab test. Execute the labTestReports query to get the id of a lab test report.

Available Fields

Field NameTypeDescription

success

Boolean

True if the lab test report has been deleted successfully. Otherwise, Flase

message

String

Description of the result.

Example


mutation {
  deleteLabTestReport(
    id: "TGFiVGVzdFJlcG9ydDo3Nw=="
  ) {
    success
    message
  }
}

Last updated