# Delete Express Meal Track

Use the `deleteExpressTrack` mutation to delete a express meal track entry.

## Arguments

| Argument | Type | Description                    |
| -------- | ---- | ------------------------------ |
| `id`     | ID!  | Id of the express track entry. |

## Available Fields

| Field     | Type    | Description                                                                                  |
| --------- | ------- | -------------------------------------------------------------------------------------------- |
| `success` | Boolean | **True** if the express meal track entry has been deleted. Otherwise, it displays **False.** |
| `message` | String  | Description of the result.                                                                   |

## Example

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

```graphql
mutation{
  deleteExpressTrack(
    id:"RXhwcmVzc01lYWxUcmFjazo3ODM3"
  ){
    success
    message
  }
}
```

{% endtab %}

{% tab title="Response" %}

```graphql
{
  "data": {
    "deleteExpressTrack": {
      "success": true,
      "message": "Express Track removed successfully"
    }
  }
}
```

{% endtab %}
{% endtabs %}
