Delete Steps Count
Deletes desired steps count entry.
Last updated
Was this helpful?
Deletes desired steps count entry.
Use the deleteStepsCount mutation to delete the desired "steps count" entry from the given ID.
Argument
Type
Note
id
ID!
Id of "steps count" entry to be deleted
Field
Type
Note
success
Boolean
true: If the entry has been deleted created successfully. Otherwise, it displays false
message
String
The message returns either if the information has been updated or not.
mutation {
deleteStepsCount (
id: "3aa082cf-1b4f-418a-bddf-a85c31e97bfc"
)
{
success
message
}
}{
"Authorization": "Bearer <insert_your_token_here>"
}{
"data": {
"addExerciseEntry": {
"success": true,
"message": "Steps entry deleted"
}
}
}Last updated
Was this helpful?
Was this helpful?