CartItems
type CartItems = {
__typename?: 'CartItems'; /** An array of products that have been added to the cart. */
items: Array<Maybe<CartItemInterface>>; /** Metadata for pagination rendering. */
page_info?: Maybe<SearchResultPageInfo>; /** The number of returned cart items. */
total_count: Scalars['Int']['output'];
};