/* eslint-disable */
import * as Types from '@graphcommerce/graphql-mesh/.mesh';

export type CategoryQueryFragment = { categories?: { items?: Array<{ uid: string, name?: string | null, url_path?: string | null, include_in_menu?: number | null, description?: string | null, display_mode?: string | null, meta_title?: string | null, meta_description?: string | null, image?: string | null, level?: number | null, is_anchor?: number | null, breadcrumbs?: Array<{ category_uid: string, category_name?: string | null, category_url_path?: string | null, category_level?: number | null } | null> | null, children?: Array<{ uid: string, name?: string | null, level?: number | null, url_path?: string | null, include_in_menu?: number | null } | null> | null } | null> | null } | null };
