Update Starting Weight
Last updated
Was this helpful?
Use the updateStartWeight mutation to update the user starting weight entry.
Argument
Type
Note
value
Float!
New weight entry to update the starting weight, measured in kilograms (kg).
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.
mutation {
updateStartWeight(value: 78.0) {
success
message
}
}{
"data": {
"updateStartWeight": {
"success": true,
"message": "Start weight updated successfully"
}
}
}Last updated
Was this helpful?
Was this helpful?