Delete HRV

Deletes desired HRV entry.

Use the deleteHRVLog mutation to delete the desired "HRV log" entry from the given ID.

Required Arguments

Argument

Type

Note

id

ID!

Id of "HRV 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{
  deleteHRVLog(
  id:"SHJ2TG9nOjEwMDg3MjE="
  ){
    success
    message
  }
}

Last updated