Files
web-frontend/graphql/operations/cart/set-cart-delivery-address.graphql
2026-04-04 09:08:51 +07:00

19 lines
300 B
GraphQL

mutation SetCartDeliveryAddress($addressId: ID) {
setCartDeliveryAddress(addressId: $addressId) {
id
userId
deliveryAddressId
items {
id
productId
productName
sku
isCustomizable
quantity
parameters
updatedAt
}
updatedAt
}
}