Delete my Checklist Item
Delete a specific checklist item
Use the deleteMyChecklistItem
to delete a checklist item created previously by using the createMyChecklistItem
mutation.
A deleted checklist item cannot be recovered.
Required Argument
Argument Name
Type
Description
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
Example
mutation {
deleteMyChecklistItem(id: "TXlDaGVja2xpc3RJdGVtOjI=") {
success
message
myChecklistItem {
id
header
text
createdAt
}
}
}
Last updated
Was this helpful?