Updated schema
This commit is contained in:
parent
72bf80b432
commit
e652ea36f1
|
@ -1942,6 +1942,8 @@ export type Content = {
|
||||||
chronicles?: Maybe<ChronicleRelationResponseCollection>;
|
chronicles?: Maybe<ChronicleRelationResponseCollection>;
|
||||||
createdAt?: Maybe<Scalars['DateTime']>;
|
createdAt?: Maybe<Scalars['DateTime']>;
|
||||||
folder?: Maybe<ContentsFolderEntityResponse>;
|
folder?: Maybe<ContentsFolderEntityResponse>;
|
||||||
|
next_contents?: Maybe<ContentRelationResponseCollection>;
|
||||||
|
previous_contents?: Maybe<ContentRelationResponseCollection>;
|
||||||
ranged_contents?: Maybe<RangedContentRelationResponseCollection>;
|
ranged_contents?: Maybe<RangedContentRelationResponseCollection>;
|
||||||
slug: Scalars['String'];
|
slug: Scalars['String'];
|
||||||
thumbnail?: Maybe<UploadFileEntityResponse>;
|
thumbnail?: Maybe<UploadFileEntityResponse>;
|
||||||
|
@ -1965,6 +1967,20 @@ export type ContentChroniclesArgs = {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
export type ContentNext_ContentsArgs = {
|
||||||
|
filters?: InputMaybe<ContentFiltersInput>;
|
||||||
|
pagination?: InputMaybe<PaginationArg>;
|
||||||
|
sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
export type ContentPrevious_ContentsArgs = {
|
||||||
|
filters?: InputMaybe<ContentFiltersInput>;
|
||||||
|
pagination?: InputMaybe<PaginationArg>;
|
||||||
|
sort?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
export type ContentRanged_ContentsArgs = {
|
export type ContentRanged_ContentsArgs = {
|
||||||
filters?: InputMaybe<RangedContentFiltersInput>;
|
filters?: InputMaybe<RangedContentFiltersInput>;
|
||||||
pagination?: InputMaybe<PaginationArg>;
|
pagination?: InputMaybe<PaginationArg>;
|
||||||
|
@ -2002,8 +2018,10 @@ export type ContentFiltersInput = {
|
||||||
createdAt?: InputMaybe<DateTimeFilterInput>;
|
createdAt?: InputMaybe<DateTimeFilterInput>;
|
||||||
folder?: InputMaybe<ContentsFolderFiltersInput>;
|
folder?: InputMaybe<ContentsFolderFiltersInput>;
|
||||||
id?: InputMaybe<IdFilterInput>;
|
id?: InputMaybe<IdFilterInput>;
|
||||||
|
next_contents?: InputMaybe<ContentFiltersInput>;
|
||||||
not?: InputMaybe<ContentFiltersInput>;
|
not?: InputMaybe<ContentFiltersInput>;
|
||||||
or?: InputMaybe<Array<InputMaybe<ContentFiltersInput>>>;
|
or?: InputMaybe<Array<InputMaybe<ContentFiltersInput>>>;
|
||||||
|
previous_contents?: InputMaybe<ContentFiltersInput>;
|
||||||
ranged_contents?: InputMaybe<RangedContentFiltersInput>;
|
ranged_contents?: InputMaybe<RangedContentFiltersInput>;
|
||||||
slug?: InputMaybe<StringFilterInput>;
|
slug?: InputMaybe<StringFilterInput>;
|
||||||
translations?: InputMaybe<ComponentTranslationsTitleFiltersInput>;
|
translations?: InputMaybe<ComponentTranslationsTitleFiltersInput>;
|
||||||
|
@ -2015,6 +2033,8 @@ export type ContentInput = {
|
||||||
categories?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
categories?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
||||||
chronicles?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
chronicles?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
||||||
folder?: InputMaybe<Scalars['ID']>;
|
folder?: InputMaybe<Scalars['ID']>;
|
||||||
|
next_contents?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
||||||
|
previous_contents?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
||||||
ranged_contents?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
ranged_contents?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
||||||
slug?: InputMaybe<Scalars['String']>;
|
slug?: InputMaybe<Scalars['String']>;
|
||||||
thumbnail?: InputMaybe<Scalars['ID']>;
|
thumbnail?: InputMaybe<Scalars['ID']>;
|
||||||
|
@ -2080,7 +2100,6 @@ export type ContentsFolder = {
|
||||||
contents?: Maybe<ContentRelationResponseCollection>;
|
contents?: Maybe<ContentRelationResponseCollection>;
|
||||||
createdAt?: Maybe<Scalars['DateTime']>;
|
createdAt?: Maybe<Scalars['DateTime']>;
|
||||||
parent_folder?: Maybe<ContentsFolderEntityResponse>;
|
parent_folder?: Maybe<ContentsFolderEntityResponse>;
|
||||||
sequence: Scalars['Boolean'];
|
|
||||||
slug: Scalars['String'];
|
slug: Scalars['String'];
|
||||||
subfolders?: Maybe<ContentsFolderRelationResponseCollection>;
|
subfolders?: Maybe<ContentsFolderRelationResponseCollection>;
|
||||||
titles: Array<Maybe<ComponentTranslationsSimpleTitle>>;
|
titles: Array<Maybe<ComponentTranslationsSimpleTitle>>;
|
||||||
|
@ -2133,7 +2152,6 @@ export type ContentsFolderFiltersInput = {
|
||||||
not?: InputMaybe<ContentsFolderFiltersInput>;
|
not?: InputMaybe<ContentsFolderFiltersInput>;
|
||||||
or?: InputMaybe<Array<InputMaybe<ContentsFolderFiltersInput>>>;
|
or?: InputMaybe<Array<InputMaybe<ContentsFolderFiltersInput>>>;
|
||||||
parent_folder?: InputMaybe<ContentsFolderFiltersInput>;
|
parent_folder?: InputMaybe<ContentsFolderFiltersInput>;
|
||||||
sequence?: InputMaybe<BooleanFilterInput>;
|
|
||||||
slug?: InputMaybe<StringFilterInput>;
|
slug?: InputMaybe<StringFilterInput>;
|
||||||
subfolders?: InputMaybe<ContentsFolderFiltersInput>;
|
subfolders?: InputMaybe<ContentsFolderFiltersInput>;
|
||||||
titles?: InputMaybe<ComponentTranslationsSimpleTitleFiltersInput>;
|
titles?: InputMaybe<ComponentTranslationsSimpleTitleFiltersInput>;
|
||||||
|
@ -2143,7 +2161,6 @@ export type ContentsFolderFiltersInput = {
|
||||||
export type ContentsFolderInput = {
|
export type ContentsFolderInput = {
|
||||||
contents?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
contents?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
||||||
parent_folder?: InputMaybe<Scalars['ID']>;
|
parent_folder?: InputMaybe<Scalars['ID']>;
|
||||||
sequence?: InputMaybe<Scalars['Boolean']>;
|
|
||||||
slug?: InputMaybe<Scalars['String']>;
|
slug?: InputMaybe<Scalars['String']>;
|
||||||
subfolders?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
subfolders?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
||||||
titles?: InputMaybe<Array<InputMaybe<ComponentTranslationsSimpleTitleInput>>>;
|
titles?: InputMaybe<Array<InputMaybe<ComponentTranslationsSimpleTitleInput>>>;
|
||||||
|
@ -5464,6 +5481,7 @@ export type WebsiteInterface = {
|
||||||
paper_texture?: Maybe<Scalars['String']>;
|
paper_texture?: Maybe<Scalars['String']>;
|
||||||
paperback?: Maybe<Scalars['String']>;
|
paperback?: Maybe<Scalars['String']>;
|
||||||
player_name?: Maybe<Scalars['String']>;
|
player_name?: Maybe<Scalars['String']>;
|
||||||
|
player_name_tooltip?: Maybe<Scalars['String']>;
|
||||||
previous_content?: Maybe<Scalars['String']>;
|
previous_content?: Maybe<Scalars['String']>;
|
||||||
price?: Maybe<Scalars['String']>;
|
price?: Maybe<Scalars['String']>;
|
||||||
primary_language?: Maybe<Scalars['String']>;
|
primary_language?: Maybe<Scalars['String']>;
|
||||||
|
@ -5672,6 +5690,7 @@ export type WebsiteInterfaceFiltersInput = {
|
||||||
paper_texture?: InputMaybe<StringFilterInput>;
|
paper_texture?: InputMaybe<StringFilterInput>;
|
||||||
paperback?: InputMaybe<StringFilterInput>;
|
paperback?: InputMaybe<StringFilterInput>;
|
||||||
player_name?: InputMaybe<StringFilterInput>;
|
player_name?: InputMaybe<StringFilterInput>;
|
||||||
|
player_name_tooltip?: InputMaybe<StringFilterInput>;
|
||||||
previous_content?: InputMaybe<StringFilterInput>;
|
previous_content?: InputMaybe<StringFilterInput>;
|
||||||
price?: InputMaybe<StringFilterInput>;
|
price?: InputMaybe<StringFilterInput>;
|
||||||
primary_language?: InputMaybe<StringFilterInput>;
|
primary_language?: InputMaybe<StringFilterInput>;
|
||||||
|
@ -5858,6 +5877,7 @@ export type WebsiteInterfaceInput = {
|
||||||
paper_texture?: InputMaybe<Scalars['String']>;
|
paper_texture?: InputMaybe<Scalars['String']>;
|
||||||
paperback?: InputMaybe<Scalars['String']>;
|
paperback?: InputMaybe<Scalars['String']>;
|
||||||
player_name?: InputMaybe<Scalars['String']>;
|
player_name?: InputMaybe<Scalars['String']>;
|
||||||
|
player_name_tooltip?: InputMaybe<Scalars['String']>;
|
||||||
previous_content?: InputMaybe<Scalars['String']>;
|
previous_content?: InputMaybe<Scalars['String']>;
|
||||||
price?: InputMaybe<Scalars['String']>;
|
price?: InputMaybe<Scalars['String']>;
|
||||||
primary_language?: InputMaybe<Scalars['String']>;
|
primary_language?: InputMaybe<Scalars['String']>;
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue