Delete Exercise Entry

Deletes desired exercise entry.

Use the deleteExerciseEntry to delete the desired exercise entry from the given ID.

Required Arguments

Argument

Type

Note

id

ID!

ID of Excercise entry to be deleted.

Available Fields

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.

Example

mutation {
  deleteExerciseEntry (
  id: "3aa063cf-1c7f-418a-bddf-b85a31e97bfc"
  ) 
  {
    success
    message
  }
}

Last updated