# Start Over Meal Plan

A user can use the `startOverMealPlan` mutation to restart the current meal plan.

The mutation selects all the days from the last meal plan, including those with past, current, and future dates, and changes their dates to restart day 1 today. This process "moves" the days to start over instead of duplicating and reassigning them, so the past days from the current meal plan will be moved out of the user's history to be reset as pending days.

To duplicate a past meal plan instead of restarting it, see the parameter `repeat` in `generateMealPlan`.

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

```graphql
mutation {
  startOverMealPlan {
    success
    message
  }
}
```

{% endtab %}

{% tab title="Response" %}

```javascript
{
  "data": {
    "startOverMealPlan": {
      "success": true,
      "message": "Meal plan was restarted"
    }
  }
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.suggestic.com/graphql/query/mutations/meal-plan/start-over-meal-plan.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
