Home > @vsf-enterprise/bigcommerce-api > GraphQL > CategoryTreeItem
# GraphQL.CategoryTreeItem type
Signature:
export declare type CategoryTreeItem = {
    __typename?: 'CategoryTreeItem';
    entityId: Scalars['Int'];
    name: Scalars['String'];
    path: Scalars['String'];
    description: Scalars['String'];
    productCount: Scalars['Int'];
    image?: Maybe<Image>;
    hasChildren: Scalars['Boolean'];
    children: Array<CategoryTreeItem>;
};