UpdateCartItemsOutput
Contains details about the cart after updating items.
type UpdateCartItemsOutput = {
__typename?: 'UpdateCartItemsOutput'; /** The cart after updating products. */
cart: Cart; /** Contains errors encountered while updating an item to the cart. */
errors: Array<Maybe<CartUserInputError>>;
};