# Remove Recipe

Use `RemoveFromShoppingList` to remove a recipe from the shopping list.

#### Available Argument

| Arguments  | Type     | Description                 |
| ---------- | -------- | --------------------------- |
| `recipeId` | **`ID`** | Unique **ID** of the recipe |

### Example

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

```graphql
mutation {
  removeFromShoppingList(
    recipeId: "UmVjaXBlOjNmMTVmNzkzLTc1ZmQtNGE3YS04MDBkLTIwNGUwZDczYzFkMw=="
  ) {
    success
  }
}
```

{% endtab %}

{% tab title="Response" %}

```graphql
{
  "data": {
    "removeFromShoppingList": {
      "success": true
    }
  }
}
```

{% endtab %}
{% endtabs %}
