Delete my Checklist Item

Delete a specific checklist item

Use the deleteMyChecklistItem to delete a checklist item created previously by using the createMyChecklistItem mutation.

circle-exclamation

Required Argument

Argument Name

Type

Description

ID

ID

Unique Checklist item ID. Execute the myChecklistItems arrow-up-rightto get the id of the item to be deleted.

Available Fields

The following fields will be displayed in the response:

Field

Type

Description

success

string

True if the checlistitem has been deleted successfully. Otherwise, False

message

string

Description of the result

myChecklistItem

A structured version of the checklist item.

Example

mutation {
  deleteMyChecklistItem(id: "TXlDaGVja2xpc3RJdGVtOjI=") {
    success
    message
    myChecklistItem {
      id
      header
      text
      createdAt
    }
  }
}

Last updated

Was this helpful?