Delete Steps Count

Deletes desired steps count entry.

Use the deleteStepsCount mutation to delete the desired "steps count" entry from the given ID.

Required Arguments

Argument

Type

Note

id

ID!

Id of "steps count" entry to be deleted

Available Fields

Field

Type

Note

success

Boolean

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

message

String

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

Example

mutation {
  deleteStepsCount (
   id: "3aa082cf-1b4f-418a-bddf-a85c31e97bfc"
  ) 
  {
    success
    message
  }
}

Last updated