Last update:
March 19, 2024
changeCartItemQuantity mutation¶
This mutation changes the cart item quantity.
Arguments¶
The InputChangeCartItemQuantityType
represents the input object type used for changing the quantity of a specific item in a cart.
Field | Description |
---|---|
cartId String |
The Id of the cart to which the item belongs. |
storeId String! |
The Id of the store to which the cart belongs. |
cartName String |
The name or description of the cart. |
userId String |
The Id of the user associated with the cart. |
currencyCode String |
The currency code for the cart. |
cultureName String |
The culture or locale name for the cart. |
cartType String |
The type or category of the cart. |
lineItemId String |
The Id of the specific item within the cart for which the quantity is being changed. |
quantity Int! |
The new quantity value to be set for the item. |
Possible returns¶
Possible return | Description |
---|---|
CartType |
The properties and fields associated with a shopping cart. |