ReorderItemsOutput
Contains the cart and any errors after adding products.
type ReorderItemsOutput = {
__typename?: 'ReorderItemsOutput'; /** Detailed information about the customer's cart. */
cart: Cart; /** An array of reordering errors. */
userInputErrors: Array<Maybe<CheckoutUserInputError>>;
};