mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
/*
|
|
* Delete cart based on current user session
|
|
*/
|
|
const removeItemFromCartMutation = /*GraphQL*/`
|
|
mutation deleteCartItem($id: String!) {
|
|
deleteCurrentCartItem(cartItemId:$id)
|
|
}`;
|
|
|
|
export default removeItemFromCartMutation;
|