For the complete documentation index, see llms.txt. This page is also available as Markdown.

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
  }
}
{
  "data": {
    "deleteHeartRateLog": {
      "success": true,
      "message": "Heart Rate Log was successfully removed"
    }
  }
}
{
  "Authorization": "Bearer <insert_your_token_here>"
}

Last updated

Was this helpful?