# Delete Lab Test Report

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

### Available Arguments

| Argument | Type | Description                                                                                       |
| -------- | ---- | ------------------------------------------------------------------------------------------------- |
| `id`     | ID!  | Unique ID of the lab test. Execute the `labTestReports` query to get the id of a lab test report. |

### Available Fields

| Field Name | Type    | Description                                                                         |
| ---------- | ------- | ----------------------------------------------------------------------------------- |
| `success`  | Boolean | **True** if the lab test report has been deleted successfully. Otherwise, **Flase** |
| `message`  | String  | Description of the result.                                                          |

### Example

{% tabs %}
{% tab title="Request" %}

```graphql

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

{% endtab %}

{% tab title="Response" %}

```graphql

{
  "data": {
    "deleteLabTestReport": {
      "success": true,
      "message": "Lab Test Report deleted"
    }
  }
```

{% endtab %}
{% endtabs %}
