Files
web-frontend/graphql/operations/cart/remove-cart-item.graphql
T

19 lines
285 B
GraphQL

mutation RemoveCartItem($productId: ID!) {
removeCartItem(productId: $productId) {
id
userId
deliveryAddressId
items {
id
productId
productName
sku
isCustomizable
quantity
parameters
updatedAt
}
updatedAt
}
}