# Update Starting Weight

Use the `updateStartWeight` mutation to update the user starting weight entry.

### **Required Arguments**

<table data-header-hidden><thead><tr><th width="201.33333333333331">Argument</th><th>Type</th><th width="271.7804878048781">Note</th></tr></thead><tbody><tr><td>Argument</td><td>Type</td><td>Note</td></tr><tr><td><code>value</code></td><td>Float!</td><td>New weight entry to update the starting weight, measured in kilograms (kg).</td></tr></tbody></table>

### **Available Fields**

| Field     | Type    | Note                                                                                   |
| --------- | ------- | -------------------------------------------------------------------------------------- |
| `success` | Boolean | **true:** If the entry has been updated successfully. Otherwise, it displays **false** |
| `message` | String  | The message returns either if the information has been updated or not.                 |

### Example <a href="#example" id="example"></a>

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

```graphql
mutation {
  updateStartWeight(value: 78.0) {
    success
    message
  }
}
```

{% endtab %}

{% tab title="Response" %}

```graphql
{
  "data": {
    "updateStartWeight": {
      "success": true,
      "message": "Start weight updated successfully"
    }
  }
}
```

{% endtab %}
{% endtabs %}
