|
@@ -432,6 +432,7 @@ export type Collection = Node & {
|
|
|
languageCode?: Maybe<LanguageCode>;
|
|
languageCode?: Maybe<LanguageCode>;
|
|
|
name: Scalars['String'];
|
|
name: Scalars['String'];
|
|
|
parent?: Maybe<Collection>;
|
|
parent?: Maybe<Collection>;
|
|
|
|
|
+ parentId: Scalars['ID'];
|
|
|
position: Scalars['Int'];
|
|
position: Scalars['Int'];
|
|
|
productVariants: ProductVariantList;
|
|
productVariants: ProductVariantList;
|
|
|
slug: Scalars['String'];
|
|
slug: Scalars['String'];
|
|
@@ -457,6 +458,7 @@ export type CollectionFilterParameter = {
|
|
|
isPrivate?: InputMaybe<BooleanOperators>;
|
|
isPrivate?: InputMaybe<BooleanOperators>;
|
|
|
languageCode?: InputMaybe<StringOperators>;
|
|
languageCode?: InputMaybe<StringOperators>;
|
|
|
name?: InputMaybe<StringOperators>;
|
|
name?: InputMaybe<StringOperators>;
|
|
|
|
|
+ parentId?: InputMaybe<IdOperators>;
|
|
|
position?: InputMaybe<NumberOperators>;
|
|
position?: InputMaybe<NumberOperators>;
|
|
|
slug?: InputMaybe<StringOperators>;
|
|
slug?: InputMaybe<StringOperators>;
|
|
|
updatedAt?: InputMaybe<DateOperators>;
|
|
updatedAt?: InputMaybe<DateOperators>;
|
|
@@ -478,6 +480,7 @@ export type CollectionListOptions = {
|
|
|
sort?: InputMaybe<CollectionSortParameter>;
|
|
sort?: InputMaybe<CollectionSortParameter>;
|
|
|
/** Takes n results, for use in pagination */
|
|
/** Takes n results, for use in pagination */
|
|
|
take?: InputMaybe<Scalars['Int']>;
|
|
take?: InputMaybe<Scalars['Int']>;
|
|
|
|
|
+ topLevelOnly?: InputMaybe<Scalars['Boolean']>;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -494,6 +497,7 @@ export type CollectionSortParameter = {
|
|
|
description?: InputMaybe<SortOrder>;
|
|
description?: InputMaybe<SortOrder>;
|
|
|
id?: InputMaybe<SortOrder>;
|
|
id?: InputMaybe<SortOrder>;
|
|
|
name?: InputMaybe<SortOrder>;
|
|
name?: InputMaybe<SortOrder>;
|
|
|
|
|
+ parentId?: InputMaybe<SortOrder>;
|
|
|
position?: InputMaybe<SortOrder>;
|
|
position?: InputMaybe<SortOrder>;
|
|
|
slug?: InputMaybe<SortOrder>;
|
|
slug?: InputMaybe<SortOrder>;
|
|
|
updatedAt?: InputMaybe<SortOrder>;
|
|
updatedAt?: InputMaybe<SortOrder>;
|