AddProductsToCartOutput
Contains details about the cart after adding products to it.
type AddProductsToCartOutput = {
__typename?: 'AddProductsToCartOutput'; /** The cart after products have been added. */
cart: Cart; /** Contains errors encountered while adding an item to the cart. */
user_errors: Array<Maybe<Error>>;
};