CategoryResult
Contains a collection of CategoryTree objects and pagination information.
type CategoryResult = {
__typename?: 'CategoryResult'; /** A list of categories that match the filter criteria. */
items?: Maybe<Array<Maybe<CategoryTree>>>; /** An object that includes the `page_info` and `currentPage` values specified in the query. */
page_info?: Maybe<SearchResultPageInfo>; /** The total number of categories that match the criteria. */
total_count?: Maybe<Scalars['Int']['output']>;
};