mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 23:16:59 +00:00
14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
import { cartPayloadFragment } from '../queries/get-cart-query'
|
|
|
|
const removeCartItemsMutation = `
|
|
mutation removeCartItemsMutation($input: RemoveCartItemsInput!) {
|
|
removeCartItems(input: $input) {
|
|
cart {
|
|
${cartPayloadFragment}
|
|
}
|
|
}
|
|
}
|
|
`
|
|
|
|
export default removeCartItemsMutation
|