import type { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'; export type Maybe = T | null; export type InputMaybe = Maybe; export type Exact = { [K in keyof T]: T[K] }; export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; export type MakeEmpty = { [_ in K]?: never }; export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } Float: { input: number; output: number; } Instant: { input: any; output: any; } UUID: { input: any; output: any; } UnsignedInt: { input: any; output: any; } }; /** Defines when a policy shall be executed. */ export const ApplyPolicy = { /** After the resolver was executed. */ AfterResolver: 'AFTER_RESOLVER', /** Before the resolver was executed. */ BeforeResolver: 'BEFORE_RESOLVER', /** The policy is applied in the validation step before the execution. */ Validation: 'VALIDATION' } as const; export type ApplyPolicy = typeof ApplyPolicy[keyof typeof ApplyPolicy]; export type ChapterDto = { body: Scalars['String']['output']; createdTime: Scalars['Instant']['output']; id: Scalars['UnsignedInt']['output']; images: Array; lastUpdatedTime: Scalars['Instant']['output']; name: Scalars['String']['output']; order: Scalars['UnsignedInt']['output']; revision: Scalars['UnsignedInt']['output']; url: Maybe; }; export type ChapterDtoFilterInput = { and?: InputMaybe>; body?: InputMaybe; createdTime?: InputMaybe; id?: InputMaybe; images?: InputMaybe; lastUpdatedTime?: InputMaybe; name?: InputMaybe; or?: InputMaybe>; order?: InputMaybe; revision?: InputMaybe; url?: InputMaybe; }; export type ChapterPullRequestedEvent = { chapterNumber: Scalars['UnsignedInt']['output']; novelId: Scalars['UnsignedInt']['output']; }; export type ChapterReaderDto = { body: Scalars['String']['output']; createdTime: Scalars['Instant']['output']; id: Scalars['UnsignedInt']['output']; images: Array; lastUpdatedTime: Scalars['Instant']['output']; name: Scalars['String']['output']; nextChapterOrder: Maybe; novelId: Scalars['UnsignedInt']['output']; novelName: Scalars['String']['output']; order: Scalars['UnsignedInt']['output']; prevChapterOrder: Maybe; revision: Scalars['UnsignedInt']['output']; totalChapters: Scalars['Int']['output']; url: Maybe; }; export type DeleteJobError = KeyNotFoundError; export type DeleteJobInput = { jobKey: Scalars['String']['input']; }; export type DeleteJobPayload = { boolean: Maybe; errors: Maybe>; }; export type DuplicateNameError = Error & { message: Scalars['String']['output']; }; export type Error = { message: Scalars['String']['output']; }; export type FetchChapterContentsInput = { chapterNumber: Scalars['UnsignedInt']['input']; novelId: Scalars['UnsignedInt']['input']; }; export type FetchChapterContentsPayload = { chapterPullRequestedEvent: Maybe; }; export type FormatError = Error & { message: Scalars['String']['output']; }; export type ImageDto = { createdTime: Scalars['Instant']['output']; id: Scalars['UUID']['output']; lastUpdatedTime: Scalars['Instant']['output']; newPath: Maybe; }; export type ImageDtoFilterInput = { and?: InputMaybe>; createdTime?: InputMaybe; id?: InputMaybe; lastUpdatedTime?: InputMaybe; newPath?: InputMaybe; or?: InputMaybe>; }; export type ImageDtoSortInput = { createdTime?: InputMaybe; id?: InputMaybe; lastUpdatedTime?: InputMaybe; newPath?: InputMaybe; }; export type ImportNovelInput = { novelUrl: Scalars['String']['input']; }; export type ImportNovelPayload = { novelUpdateRequestedEvent: Maybe; }; export type InstantFilterInput = { and?: InputMaybe>; or?: InputMaybe>; }; export type JobKey = { group: Scalars['String']['output']; name: Scalars['String']['output']; }; export type JobPersistenceError = Error & { message: Scalars['String']['output']; }; export type KeyNotFoundError = Error & { message: Scalars['String']['output']; }; export type KeyValuePairOfStringAndString = { key: Scalars['String']['output']; value: Scalars['String']['output']; }; export const Language = { Ch: 'CH', En: 'EN', Ja: 'JA', Kr: 'KR' } as const; export type Language = typeof Language[keyof typeof Language]; export type LanguageOperationFilterInput = { eq?: InputMaybe; in?: InputMaybe>; neq?: InputMaybe; nin?: InputMaybe>; }; export type ListFilterInputTypeOfChapterDtoFilterInput = { all?: InputMaybe; any?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type ListFilterInputTypeOfImageDtoFilterInput = { all?: InputMaybe; any?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type ListFilterInputTypeOfNovelTagDtoFilterInput = { all?: InputMaybe; any?: InputMaybe; none?: InputMaybe; some?: InputMaybe; }; export type Mutation = { deleteJob: DeleteJobPayload; fetchChapterContents: FetchChapterContentsPayload; importNovel: ImportNovelPayload; registerUser: RegisterUserPayload; runJob: RunJobPayload; scheduleEventJob: ScheduleEventJobPayload; translateText: TranslateTextPayload; }; export type MutationDeleteJobArgs = { input: DeleteJobInput; }; export type MutationFetchChapterContentsArgs = { input: FetchChapterContentsInput; }; export type MutationImportNovelArgs = { input: ImportNovelInput; }; export type MutationRegisterUserArgs = { input: RegisterUserInput; }; export type MutationRunJobArgs = { input: RunJobInput; }; export type MutationScheduleEventJobArgs = { input: ScheduleEventJobInput; }; export type MutationTranslateTextArgs = { input: TranslateTextInput; }; export type NovelDto = { author: PersonDto; chapters: Array; coverImage: Maybe; createdTime: Scalars['Instant']['output']; description: Scalars['String']['output']; externalId: Scalars['String']['output']; id: Scalars['UnsignedInt']['output']; lastUpdatedTime: Scalars['Instant']['output']; name: Scalars['String']['output']; rawLanguage: Language; rawStatus: NovelStatus; source: SourceDto; statusOverride: Maybe; tags: Array; url: Scalars['String']['output']; }; export type NovelDtoFilterInput = { and?: InputMaybe>; author?: InputMaybe; chapters?: InputMaybe; coverImage?: InputMaybe; createdTime?: InputMaybe; description?: InputMaybe; externalId?: InputMaybe; id?: InputMaybe; lastUpdatedTime?: InputMaybe; name?: InputMaybe; or?: InputMaybe>; rawLanguage?: InputMaybe; rawStatus?: InputMaybe; source?: InputMaybe; statusOverride?: InputMaybe; tags?: InputMaybe; url?: InputMaybe; }; export type NovelDtoSortInput = { author?: InputMaybe; coverImage?: InputMaybe; createdTime?: InputMaybe; description?: InputMaybe; externalId?: InputMaybe; id?: InputMaybe; lastUpdatedTime?: InputMaybe; name?: InputMaybe; rawLanguage?: InputMaybe; rawStatus?: InputMaybe; source?: InputMaybe; statusOverride?: InputMaybe; url?: InputMaybe; }; export const NovelStatus = { Abandoned: 'ABANDONED', Completed: 'COMPLETED', Hiatus: 'HIATUS', InProgress: 'IN_PROGRESS', Unknown: 'UNKNOWN' } as const; export type NovelStatus = typeof NovelStatus[keyof typeof NovelStatus]; export type NovelStatusOperationFilterInput = { eq?: InputMaybe; in?: InputMaybe>; neq?: InputMaybe; nin?: InputMaybe>; }; export type NovelTagDto = { createdTime: Scalars['Instant']['output']; displayName: Scalars['String']['output']; id: Scalars['UnsignedInt']['output']; key: Scalars['String']['output']; lastUpdatedTime: Scalars['Instant']['output']; source: Maybe; tagType: TagType; }; export type NovelTagDtoFilterInput = { and?: InputMaybe>; createdTime?: InputMaybe; displayName?: InputMaybe; id?: InputMaybe; key?: InputMaybe; lastUpdatedTime?: InputMaybe; or?: InputMaybe>; source?: InputMaybe; tagType?: InputMaybe; }; export type NovelUpdateRequestedEvent = { novelUrl: Scalars['String']['output']; }; /** A connection to a list of items. */ export type NovelsConnection = { /** A list of edges. */ edges: Maybe>; /** A flattened list of the nodes. */ nodes: Maybe>; /** Information to aid in pagination. */ pageInfo: PageInfo; }; /** An edge in a connection. */ export type NovelsEdge = { /** A cursor for use in pagination. */ cursor: Scalars['String']['output']; /** The item at the end of the edge. */ node: NovelDto; }; export type NullableOfNovelStatusOperationFilterInput = { eq?: InputMaybe; in?: InputMaybe>>; neq?: InputMaybe; nin?: InputMaybe>>; }; /** Information about pagination in a connection. */ export type PageInfo = { /** When paginating forwards, the cursor to continue. */ endCursor: Maybe; /** Indicates whether more edges exist following the set defined by the clients arguments. */ hasNextPage: Scalars['Boolean']['output']; /** Indicates whether more edges exist prior the set defined by the clients arguments. */ hasPreviousPage: Scalars['Boolean']['output']; /** When paginating backwards, the cursor to continue. */ startCursor: Maybe; }; export type PersonDto = { createdTime: Scalars['Instant']['output']; externalUrl: Maybe; id: Scalars['UnsignedInt']['output']; lastUpdatedTime: Scalars['Instant']['output']; name: Scalars['String']['output']; }; export type PersonDtoFilterInput = { and?: InputMaybe>; createdTime?: InputMaybe; externalUrl?: InputMaybe; id?: InputMaybe; lastUpdatedTime?: InputMaybe; name?: InputMaybe; or?: InputMaybe>; }; export type PersonDtoSortInput = { createdTime?: InputMaybe; externalUrl?: InputMaybe; id?: InputMaybe; lastUpdatedTime?: InputMaybe; name?: InputMaybe; }; export type Query = { chapter: Maybe; jobs: Array; novels: Maybe; translationEngines: Array; translationRequests: Maybe; users: Array; }; export type QueryChapterArgs = { chapterOrder: Scalars['UnsignedInt']['input']; novelId: Scalars['UnsignedInt']['input']; preferredLanguage?: Language; }; export type QueryNovelsArgs = { after?: InputMaybe; before?: InputMaybe; first?: InputMaybe; last?: InputMaybe; order?: InputMaybe>; preferredLanguage?: Language; where?: InputMaybe; }; export type QueryTranslationEnginesArgs = { order?: InputMaybe>; where?: InputMaybe; }; export type QueryTranslationRequestsArgs = { after?: InputMaybe; before?: InputMaybe; first?: InputMaybe; last?: InputMaybe; order?: InputMaybe>; where?: InputMaybe; }; export type RegisterUserInput = { email: Scalars['String']['input']; inviterOAuthProviderId?: InputMaybe; oAuthProviderId: Scalars['String']['input']; username: Scalars['String']['input']; }; export type RegisterUserPayload = { userDto: Maybe; }; export type RunJobError = JobPersistenceError; export type RunJobInput = { jobKey: Scalars['String']['input']; }; export type RunJobPayload = { boolean: Maybe; errors: Maybe>; }; export type ScheduleEventJobError = DuplicateNameError | FormatError; export type ScheduleEventJobInput = { cronSchedule: Scalars['String']['input']; description: Scalars['String']['input']; eventData: Scalars['String']['input']; eventType: Scalars['String']['input']; key: Scalars['String']['input']; }; export type ScheduleEventJobPayload = { errors: Maybe>; schedulerJob: Maybe; }; export type SchedulerJob = { cronSchedule: Array; description: Scalars['String']['output']; jobData: Array; jobKey: JobKey; jobTypeName: Scalars['String']['output']; }; export const SortEnumType = { Asc: 'ASC', Desc: 'DESC' } as const; export type SortEnumType = typeof SortEnumType[keyof typeof SortEnumType]; export type SourceDto = { createdTime: Scalars['Instant']['output']; id: Scalars['UnsignedInt']['output']; key: Scalars['String']['output']; lastUpdatedTime: Scalars['Instant']['output']; name: Scalars['String']['output']; url: Scalars['String']['output']; }; export type SourceDtoFilterInput = { and?: InputMaybe>; createdTime?: InputMaybe; id?: InputMaybe; key?: InputMaybe; lastUpdatedTime?: InputMaybe; name?: InputMaybe; or?: InputMaybe>; url?: InputMaybe; }; export type SourceDtoSortInput = { createdTime?: InputMaybe; id?: InputMaybe; key?: InputMaybe; lastUpdatedTime?: InputMaybe; name?: InputMaybe; url?: InputMaybe; }; export type StringOperationFilterInput = { and?: InputMaybe>; contains?: InputMaybe; endsWith?: InputMaybe; eq?: InputMaybe; in?: InputMaybe>>; ncontains?: InputMaybe; nendsWith?: InputMaybe; neq?: InputMaybe; nin?: InputMaybe>>; nstartsWith?: InputMaybe; or?: InputMaybe>; startsWith?: InputMaybe; }; export const TagType = { External: 'EXTERNAL', Genre: 'GENRE', System: 'SYSTEM', UserDefined: 'USER_DEFINED' } as const; export type TagType = typeof TagType[keyof typeof TagType]; export type TagTypeOperationFilterInput = { eq?: InputMaybe; in?: InputMaybe>; neq?: InputMaybe; nin?: InputMaybe>; }; export type TranslateTextInput = { from: Language; text: Scalars['String']['input']; to: Language; translationEngineKey: Scalars['String']['input']; }; export type TranslateTextPayload = { translationResult: Maybe; }; export type TranslationEngineDescriptor = { displayName: Scalars['String']['output']; key: Scalars['String']['output']; }; export type TranslationEngineDescriptorFilterInput = { and?: InputMaybe>; displayName?: InputMaybe; key?: InputMaybe; or?: InputMaybe>; }; export type TranslationEngineDescriptorSortInput = { displayName?: InputMaybe; key?: InputMaybe; }; export type TranslationRequestDto = { billedCharacterCount: Scalars['UnsignedInt']['output']; createdTime: Scalars['Instant']['output']; from: Language; id: Scalars['UUID']['output']; lastUpdatedTime: Scalars['Instant']['output']; originalText: Scalars['String']['output']; status: TranslationRequestStatus; to: Language; translatedText: Maybe; translationEngineKey: Scalars['String']['output']; }; export type TranslationRequestDtoFilterInput = { and?: InputMaybe>; billedCharacterCount?: InputMaybe; createdTime?: InputMaybe; from?: InputMaybe; id?: InputMaybe; lastUpdatedTime?: InputMaybe; or?: InputMaybe>; originalText?: InputMaybe; status?: InputMaybe; to?: InputMaybe; translatedText?: InputMaybe; translationEngineKey?: InputMaybe; }; export type TranslationRequestDtoSortInput = { billedCharacterCount?: InputMaybe; createdTime?: InputMaybe; from?: InputMaybe; id?: InputMaybe; lastUpdatedTime?: InputMaybe; originalText?: InputMaybe; status?: InputMaybe; to?: InputMaybe; translatedText?: InputMaybe; translationEngineKey?: InputMaybe; }; export const TranslationRequestStatus = { Failed: 'FAILED', Pending: 'PENDING', Success: 'SUCCESS' } as const; export type TranslationRequestStatus = typeof TranslationRequestStatus[keyof typeof TranslationRequestStatus]; export type TranslationRequestStatusOperationFilterInput = { eq?: InputMaybe; in?: InputMaybe>; neq?: InputMaybe; nin?: InputMaybe>; }; /** A connection to a list of items. */ export type TranslationRequestsConnection = { /** A list of edges. */ edges: Maybe>; /** A flattened list of the nodes. */ nodes: Maybe>; /** Information to aid in pagination. */ pageInfo: PageInfo; }; /** An edge in a connection. */ export type TranslationRequestsEdge = { /** A cursor for use in pagination. */ cursor: Scalars['String']['output']; /** The item at the end of the edge. */ node: TranslationRequestDto; }; export type TranslationResult = { billedCharacterCount: Scalars['UnsignedInt']['output']; from: Language; originalText: Scalars['String']['output']; status: TranslationRequestStatus; to: Language; translatedText: Maybe; translationEngineKey: Scalars['String']['output']; }; export type UnsignedIntOperationFilterInputType = { eq?: InputMaybe; gt?: InputMaybe; gte?: InputMaybe; in?: InputMaybe>>; lt?: InputMaybe; lte?: InputMaybe; neq?: InputMaybe; ngt?: InputMaybe; ngte?: InputMaybe; nin?: InputMaybe>>; nlt?: InputMaybe; nlte?: InputMaybe; }; export type UserDto = { createdTime: Scalars['Instant']['output']; disabled: Scalars['Boolean']['output']; email: Scalars['String']['output']; id: Scalars['UUID']['output']; inviter: Maybe; lastUpdatedTime: Scalars['Instant']['output']; username: Scalars['String']['output']; }; export type UuidOperationFilterInput = { eq?: InputMaybe; gt?: InputMaybe; gte?: InputMaybe; in?: InputMaybe>>; lt?: InputMaybe; lte?: InputMaybe; neq?: InputMaybe; ngt?: InputMaybe; ngte?: InputMaybe; nin?: InputMaybe>>; nlt?: InputMaybe; nlte?: InputMaybe; }; export type ImportNovelMutationVariables = Exact<{ input: ImportNovelInput; }>; export type ImportNovelMutation = { importNovel: { novelUpdateRequestedEvent: { novelUrl: string } | null } }; export type GetChapterQueryVariables = Exact<{ novelId: Scalars['UnsignedInt']['input']; chapterOrder: Scalars['UnsignedInt']['input']; }>; export type GetChapterQuery = { chapter: { id: any, order: any, name: string, body: string, url: string | null, revision: any, createdTime: any, lastUpdatedTime: any, novelId: any, novelName: string, totalChapters: number, prevChapterOrder: any | null, nextChapterOrder: any | null, images: Array<{ id: any, newPath: string | null }> } | null }; export type NovelQueryVariables = Exact<{ id: Scalars['UnsignedInt']['input']; }>; export type NovelQuery = { novels: { nodes: Array<{ id: any, name: string, description: string, url: string, rawLanguage: Language, rawStatus: NovelStatus, statusOverride: NovelStatus | null, externalId: string, createdTime: any, lastUpdatedTime: any, author: { id: any, name: string, externalUrl: string | null }, source: { id: any, name: string, key: string, url: string }, coverImage: { newPath: string | null } | null, tags: Array<{ id: any, key: string, displayName: string, tagType: TagType }>, chapters: Array<{ id: any, order: any, name: string, lastUpdatedTime: any, images: Array<{ id: any, newPath: string | null }> }> }> | null } | null }; export type NovelsQueryVariables = Exact<{ first?: InputMaybe; after?: InputMaybe; where?: InputMaybe; }>; export type NovelsQuery = { novels: { edges: Array<{ cursor: string, node: { id: any, url: string, name: string, description: string, rawStatus: NovelStatus, lastUpdatedTime: any, coverImage: { newPath: string | null } | null, chapters: Array<{ order: any, name: string }>, tags: Array<{ key: string, displayName: string }> } }> | null, pageInfo: { hasNextPage: boolean, endCursor: string | null } } | null }; export const ImportNovelDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"ImportNovel"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ImportNovelInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"importNovel"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"novelUpdateRequestedEvent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"novelUrl"}}]}}]}}]}}]} as unknown as DocumentNode; export const GetChapterDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetChapter"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"novelId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UnsignedInt"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"chapterOrder"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UnsignedInt"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"chapter"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"novelId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"novelId"}}},{"kind":"Argument","name":{"kind":"Name","value":"chapterOrder"},"value":{"kind":"Variable","name":{"kind":"Name","value":"chapterOrder"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"order"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"body"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"revision"}},{"kind":"Field","name":{"kind":"Name","value":"createdTime"}},{"kind":"Field","name":{"kind":"Name","value":"lastUpdatedTime"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"newPath"}}]}},{"kind":"Field","name":{"kind":"Name","value":"novelId"}},{"kind":"Field","name":{"kind":"Name","value":"novelName"}},{"kind":"Field","name":{"kind":"Name","value":"totalChapters"}},{"kind":"Field","name":{"kind":"Name","value":"prevChapterOrder"}},{"kind":"Field","name":{"kind":"Name","value":"nextChapterOrder"}}]}}]}}]} as unknown as DocumentNode; export const NovelDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Novel"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UnsignedInt"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"novels"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"id"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"eq"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}]}}]}},{"kind":"Argument","name":{"kind":"Name","value":"first"},"value":{"kind":"IntValue","value":"1"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"rawLanguage"}},{"kind":"Field","name":{"kind":"Name","value":"rawStatus"}},{"kind":"Field","name":{"kind":"Name","value":"statusOverride"}},{"kind":"Field","name":{"kind":"Name","value":"externalId"}},{"kind":"Field","name":{"kind":"Name","value":"createdTime"}},{"kind":"Field","name":{"kind":"Name","value":"lastUpdatedTime"}},{"kind":"Field","name":{"kind":"Name","value":"author"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"source"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"coverImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"newPath"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tags"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"tagType"}}]}},{"kind":"Field","name":{"kind":"Name","value":"chapters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"order"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"lastUpdatedTime"}},{"kind":"Field","name":{"kind":"Name","value":"images"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"newPath"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const NovelsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Novels"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"first"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"after"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NovelDtoFilterInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"novels"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"first"},"value":{"kind":"Variable","name":{"kind":"Name","value":"first"}}},{"kind":"Argument","name":{"kind":"Name","value":"after"},"value":{"kind":"Variable","name":{"kind":"Name","value":"after"}}},{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"edges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"coverImage"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"newPath"}}]}},{"kind":"Field","name":{"kind":"Name","value":"rawStatus"}},{"kind":"Field","name":{"kind":"Name","value":"lastUpdatedTime"}},{"kind":"Field","name":{"kind":"Name","value":"chapters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"order"}},{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tags"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"pageInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hasNextPage"}},{"kind":"Field","name":{"kind":"Name","value":"endCursor"}}]}}]}}]}}]} as unknown as DocumentNode;