Last update:
December 12, 2024
changeCartConfiguredItem mutation¶
This mutation updates the configuration or quantity of an existing line item in the cart based on the provided input command.
Arguments¶
The InputChangeCartConfiguredItemType
represents the input object type used for modifying a configured line item in the cart.
Field | Description |
---|---|
cartId String |
The Id of the cart containing the line item. |
storeId String! |
The Id of the store associated with the cart. |
cartName String |
The name of the cart. |
userId String! |
The Id of the user who owns the cart. |
currencyCode String |
The currency code for the cart. |
cultureName String |
The culture or language associated with the cart. |
cartType String |
The type of the cart. |
lineItemId String! |
The Id of the line item to be modified. |
quantity Int |
The new quantity for the line item. |
configurationSections [ConfigurationSectionInput] |
A list of configuration sections and their associated details. |
Possible returns¶
Possible return | Description |
---|---|
CartType |
The updated details and properties of the cart. |