mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
14 lines
338 B
TypeScript
14 lines
338 B
TypeScript
import { cartPayloadFragment } from '@framework/utils/queries/get-cart-query'
|
|
|
|
const updateCartItemsQuantityMutation = `
|
|
mutation removeCartItemsMutation($input: RemoveCartItemsInput!) {
|
|
removeCartItems(input: $input) {
|
|
cart {
|
|
${cartPayloadFragment}
|
|
}
|
|
}
|
|
}
|
|
`
|
|
|
|
export default updateCartItemsQuantityMutation
|