Delete Exercise Entry
Deletes desired exercise entry.
Last updated
Was this helpful?
Deletes desired exercise entry.
Use the deleteExerciseEntry to delete the desired exercise entry from the given ID.
Argument
Type
Note
id
ID!
ID of Excercise entry to be deleted.
Field
Type
Note
success
Boolean
true: If the entry has been created successfully. Otherwise, it displays false
message
String
The message returns either if the information has been updated or not.
mutation {
deleteExerciseEntry (
id: "3aa063cf-1c7f-418a-bddf-b85a31e97bfc"
)
{
success
message
}
}{
"Authorization": "Bearer <insert_your_token_here>"
}{
"data": {
"deleteExerciseEntry": {
"success": true,
"message": "Exercise entry deleted"
}
}
}Last updated
Was this helpful?
Was this helpful?