Clear Checked Items
Example
mutation {
clearShoppingListCheckedItems {
success
}
}{
"data": {
"clearShoppingListCheckedItems": {
"success": true
}
}
}UI/UX example

Last updated
Was this helpful?
Use clearShoppingListCheckedItemsto remove all items currently marked as done.
Clear all checked items form the user's Shopping List
mutation {
clearShoppingListCheckedItems {
success
}
}{
"data": {
"clearShoppingListCheckedItems": {
"success": true
}
}
}In the same way, we have code examples, this is an implementation example in which see results of the API execution in the Suggestic App.
Login to the App, tap on the Meal Plan option, and tap on the
icon to access the Shopping List, Tap on By Recipe tab, the action to clear all checked items is the same as explained as follows:

Last updated
Was this helpful?
Was this helpful?