cartUpdateAddress
Update cart delivery and billing addresses.
Modifies the addresses associated with the cart including delivery address, billing address, and any additional address types required for order processing.
Possible errors:
- CART_NOT_FOUND_ERROR: Cart with the specified ID does not exist
- CART_ADDRESS_UPDATE_ERROR: Failed to update the cart addresses
cartUpdateAddress(
id: String!
input: CartUpdateAddressInput!
): Cart!
Arguments
cartUpdateAddress.id
● String!
non-null scalar
Unique identifier of the cart to update addresses for.
Must be a valid UUID format representing an existing cart.
cartUpdateAddress.input
● CartUpdateAddressInput!
non-null input
Address update information.
Contains the new address details for delivery, billing, or other address types associated with the cart.
Type
Cart
object
Shopping cart entity for managing customer purchases.
Represents a shopping session containing products, customer information, addresses, payment preferences, and all data needed for order processing. Carts can be associated with different customer types and support various business models.