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
}
}
}{
"data": {
"deleteMyChecklistItem": {
"success": true,
"message": "My checklist item was successfully deleted",
"myChecklistItem": {
"id": "TXlDaGVja2xpc3RJdGVtOjI=",
"header": "Run 30km",
"text": "Coach Suggestion",
"createdAt": "2022-02-04T15:59:37.974133+00:00"
}
}
}
}Last updated
Was this helpful?