Delete Heart Rate

Deletes desired heart rate entry.

Use the deleteHeartRateLog mutation to delete the desired "heart rate" entry from the given ID.

Required Arguments

Argument

Type

Note

id

ID!

Id of "heart rate log" entry to be deleted

Available Fields

Field

Type

Note

success

Boolean

true: If the entry has been deleted successfully. Otherwise, it displays false

message

String

The message returns either if the information has been updated or not.

Example

mutation {
  deleteHeartRateLog (
   id: "3ba082cf-1b3f-418a-bddf-a01c31e97bfc"
  ) 
  {
    success
    message
  }
}

Last updated