# Remove Recommended Supplement

Use `deleteArticleRecommended` to remove recommended article using Id.

## Required Arguments

| Argument               | Type | Description                |
| ---------------------- | ---- | -------------------------- |
| `articleRecommendedId` | ID!  | Recommended Supplement Id. |

## Available Fields

| Field     | Type   | Description                                                       |
| --------- | ------ | ----------------------------------------------------------------- |
| `success` | String | Success if Recommended Supplement created succesfully.            |
| `message` | String | Description of the result. Either if the recipe was added or not. |

## Example

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

```graphql
mutation deleteArticleRecommended {
    deleteArticleRecommended(id: "QXJ0aWNsZVJlY29tbWVuZGVkOjE=") {
        success message
        articleRecommended {
            id valueMax valueMin article { id title }
        }
    }
}
```

{% endtab %}

{% tab title="Response" %}

```graphql
{
  "data": {
    "deleteArticleRecommended": {
      "success": true,
      "message": "Article recommended deleted",
      "articleRecommended": {
        "id": "QXJ0aWNsZVJlY29tbWVuZGVkOjE=",
        "valueMax": 150,
        "valueMin": 1,
        "article": {
          "id": "Q29udGVudExpYnJhcnk6NzAwMThkNjYtZDMyMC00MzIyLWFlMDktYTU5N2Q5YjdkNGU1",
          "title": "My content library"
        }
      }
    }
  }
}
```

{% endtab %}
{% endtabs %}
