CustomerOrders
The collection of orders that match the conditions defined in the filter.
type CustomerOrders = {
__typename?: 'CustomerOrders'; /** Date of the first order placed in the store */
date_of_first_order?: Maybe<Scalars['String']['output']>; /** An array of customer orders. */
items: Array<Maybe<CustomerOrder>>; /** Contains pagination metadata. */
page_info?: Maybe<SearchResultPageInfo>; /** The total count of customer orders. */
total_count?: Maybe<Scalars['Int']['output']>;
};