Delete Express Meal Track
Last updated
Was this helpful?
Use the deleteExpressTrack mutation to delete a express meal track entry.
id
ID!
Id of the express track entry.
success
Boolean
True if the express meal track entry has been deleted. Otherwise, it displays False.
message
String
Description of the result.
mutation{
deleteExpressTrack(
id:"RXhwcmVzc01lYWxUcmFjazo3ODM3"
){
success
message
}
}{
"data": {
"deleteExpressTrack": {
"success": true,
"message": "Express Track removed successfully"
}
}
}Last updated
Was this helpful?
Was this helpful?