1258 lines
76 KiB
TypeScript
1258 lines
76 KiB
TypeScript
import type { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
|
|
export type Maybe<T> = T | null;
|
|
export type InputMaybe<T> = Maybe<T>;
|
|
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
|
|
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
|
|
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
|
|
export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
|
|
export type Incremental<T> = 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; }
|
|
};
|
|
|
|
export type AddToReadingListError = InvalidOperationError;
|
|
|
|
export type AddToReadingListInput = {
|
|
novelId: Scalars['UnsignedInt']['input'];
|
|
readingListId: Scalars['Int']['input'];
|
|
};
|
|
|
|
export type AddToReadingListPayload = {
|
|
errors: Maybe<Array<AddToReadingListError>>;
|
|
readingListPayload: Maybe<ReadingListPayload>;
|
|
};
|
|
|
|
/** 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 BookmarkDto = {
|
|
chapterId: Scalars['UnsignedInt']['output'];
|
|
createdTime: Scalars['Instant']['output'];
|
|
description: Maybe<Scalars['String']['output']>;
|
|
id: Scalars['Int']['output'];
|
|
novelId: Scalars['UnsignedInt']['output'];
|
|
};
|
|
|
|
export type BookmarkPayload = {
|
|
bookmark: Maybe<BookmarkDto>;
|
|
success: Scalars['Boolean']['output'];
|
|
};
|
|
|
|
export type ChapterDto = {
|
|
body: Scalars['String']['output'];
|
|
createdTime: Scalars['Instant']['output'];
|
|
id: Scalars['UnsignedInt']['output'];
|
|
images: Array<ImageDto>;
|
|
lastUpdatedTime: Scalars['Instant']['output'];
|
|
name: Scalars['String']['output'];
|
|
order: Scalars['UnsignedInt']['output'];
|
|
revision: Scalars['UnsignedInt']['output'];
|
|
url: Maybe<Scalars['String']['output']>;
|
|
};
|
|
|
|
export type ChapterDtoFilterInput = {
|
|
and?: InputMaybe<Array<ChapterDtoFilterInput>>;
|
|
body?: InputMaybe<StringOperationFilterInput>;
|
|
createdTime?: InputMaybe<InstantFilterInput>;
|
|
id?: InputMaybe<UnsignedIntOperationFilterInputType>;
|
|
images?: InputMaybe<ListFilterInputTypeOfImageDtoFilterInput>;
|
|
lastUpdatedTime?: InputMaybe<InstantFilterInput>;
|
|
name?: InputMaybe<StringOperationFilterInput>;
|
|
or?: InputMaybe<Array<ChapterDtoFilterInput>>;
|
|
order?: InputMaybe<UnsignedIntOperationFilterInputType>;
|
|
revision?: InputMaybe<UnsignedIntOperationFilterInputType>;
|
|
url?: InputMaybe<StringOperationFilterInput>;
|
|
};
|
|
|
|
export type ChapterPullRequested = {
|
|
chapterOrder: Scalars['UnsignedInt']['output'];
|
|
importId: Scalars['UUID']['output'];
|
|
novelId: Scalars['UnsignedInt']['output'];
|
|
volumeId: Scalars['UnsignedInt']['output'];
|
|
};
|
|
|
|
export type ChapterReaderDto = {
|
|
body: Scalars['String']['output'];
|
|
createdTime: Scalars['Instant']['output'];
|
|
id: Scalars['UnsignedInt']['output'];
|
|
images: Array<ImageDto>;
|
|
lastUpdatedTime: Scalars['Instant']['output'];
|
|
name: Scalars['String']['output'];
|
|
nextChapterOrder: Maybe<Scalars['UnsignedInt']['output']>;
|
|
nextChapterVolumeOrder: Maybe<Scalars['Int']['output']>;
|
|
novelId: Scalars['UnsignedInt']['output'];
|
|
novelName: Scalars['String']['output'];
|
|
order: Scalars['UnsignedInt']['output'];
|
|
prevChapterOrder: Maybe<Scalars['UnsignedInt']['output']>;
|
|
prevChapterVolumeOrder: Maybe<Scalars['Int']['output']>;
|
|
revision: Scalars['UnsignedInt']['output'];
|
|
totalChaptersInVolume: Scalars['Int']['output'];
|
|
url: Maybe<Scalars['String']['output']>;
|
|
volumeId: Scalars['UnsignedInt']['output'];
|
|
volumeName: Scalars['String']['output'];
|
|
volumeOrder: Scalars['Int']['output'];
|
|
};
|
|
|
|
export type CreateReadingListError = InvalidOperationError;
|
|
|
|
export type CreateReadingListInput = {
|
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
name: Scalars['String']['input'];
|
|
};
|
|
|
|
export type CreateReadingListPayload = {
|
|
errors: Maybe<Array<CreateReadingListError>>;
|
|
readingListPayload: Maybe<ReadingListPayload>;
|
|
};
|
|
|
|
export type DeleteJobError = KeyNotFoundError;
|
|
|
|
export type DeleteJobInput = {
|
|
jobKey: Scalars['String']['input'];
|
|
};
|
|
|
|
export type DeleteJobPayload = {
|
|
boolean: Maybe<Scalars['Boolean']['output']>;
|
|
errors: Maybe<Array<DeleteJobError>>;
|
|
};
|
|
|
|
export type DeleteNovelError = KeyNotFoundError;
|
|
|
|
export type DeleteNovelInput = {
|
|
novelId: Scalars['UnsignedInt']['input'];
|
|
};
|
|
|
|
export type DeleteNovelPayload = {
|
|
boolean: Maybe<Scalars['Boolean']['output']>;
|
|
errors: Maybe<Array<DeleteNovelError>>;
|
|
};
|
|
|
|
export type DeleteReadingListError = InvalidOperationError;
|
|
|
|
export type DeleteReadingListInput = {
|
|
id: Scalars['Int']['input'];
|
|
};
|
|
|
|
export type DeleteReadingListPayload = {
|
|
errors: Maybe<Array<DeleteReadingListError>>;
|
|
success: Maybe<Scalars['Boolean']['output']>;
|
|
};
|
|
|
|
export type DuplicateNameError = Error & {
|
|
message: Scalars['String']['output'];
|
|
};
|
|
|
|
export type Error = {
|
|
message: Scalars['String']['output'];
|
|
};
|
|
|
|
export type FetchChapterContentsInput = {
|
|
chapterOrder: Scalars['UnsignedInt']['input'];
|
|
importId: Scalars['UUID']['input'];
|
|
novelId: Scalars['UnsignedInt']['input'];
|
|
volumeId: Scalars['UnsignedInt']['input'];
|
|
};
|
|
|
|
export type FetchChapterContentsPayload = {
|
|
chapterPullRequested: Maybe<ChapterPullRequested>;
|
|
};
|
|
|
|
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<Scalars['String']['output']>;
|
|
};
|
|
|
|
export type ImageDtoFilterInput = {
|
|
and?: InputMaybe<Array<ImageDtoFilterInput>>;
|
|
createdTime?: InputMaybe<InstantFilterInput>;
|
|
id?: InputMaybe<UuidOperationFilterInput>;
|
|
lastUpdatedTime?: InputMaybe<InstantFilterInput>;
|
|
newPath?: InputMaybe<StringOperationFilterInput>;
|
|
or?: InputMaybe<Array<ImageDtoFilterInput>>;
|
|
};
|
|
|
|
export type ImageDtoSortInput = {
|
|
createdTime?: InputMaybe<SortEnumType>;
|
|
id?: InputMaybe<SortEnumType>;
|
|
lastUpdatedTime?: InputMaybe<SortEnumType>;
|
|
newPath?: InputMaybe<SortEnumType>;
|
|
};
|
|
|
|
export type ImportNovelError = InvalidOperationError;
|
|
|
|
export type ImportNovelInput = {
|
|
novelUrl: Scalars['String']['input'];
|
|
};
|
|
|
|
export type ImportNovelPayload = {
|
|
errors: Maybe<Array<ImportNovelError>>;
|
|
importNovelResult: Maybe<ImportNovelResult>;
|
|
};
|
|
|
|
export type ImportNovelResult = {
|
|
importId: Scalars['UUID']['output'];
|
|
novelUrl: Scalars['String']['output'];
|
|
};
|
|
|
|
export type InstantFilterInput = {
|
|
and?: InputMaybe<Array<InstantFilterInput>>;
|
|
or?: InputMaybe<Array<InstantFilterInput>>;
|
|
};
|
|
|
|
export type IntOperationFilterInput = {
|
|
eq?: InputMaybe<Scalars['Int']['input']>;
|
|
gt?: InputMaybe<Scalars['Int']['input']>;
|
|
gte?: InputMaybe<Scalars['Int']['input']>;
|
|
in?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
lt?: InputMaybe<Scalars['Int']['input']>;
|
|
lte?: InputMaybe<Scalars['Int']['input']>;
|
|
neq?: InputMaybe<Scalars['Int']['input']>;
|
|
ngt?: InputMaybe<Scalars['Int']['input']>;
|
|
ngte?: InputMaybe<Scalars['Int']['input']>;
|
|
nin?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
nlt?: InputMaybe<Scalars['Int']['input']>;
|
|
nlte?: InputMaybe<Scalars['Int']['input']>;
|
|
};
|
|
|
|
export type InvalidOperationError = Error & {
|
|
message: Scalars['String']['output'];
|
|
};
|
|
|
|
export type InviteUserError = InvalidOperationError;
|
|
|
|
export type InviteUserInput = {
|
|
email: Scalars['String']['input'];
|
|
username: Scalars['String']['input'];
|
|
};
|
|
|
|
export type InviteUserPayload = {
|
|
errors: Maybe<Array<InviteUserError>>;
|
|
userDto: Maybe<UserDto>;
|
|
};
|
|
|
|
export type InvitedUserDto = {
|
|
email: Scalars['String']['output'];
|
|
username: Scalars['String']['output'];
|
|
};
|
|
|
|
export type JobDto = {
|
|
childJobs: Maybe<Array<JobDto>>;
|
|
createdTime: Scalars['Instant']['output'];
|
|
displayName: Scalars['String']['output'];
|
|
errorMessage: Maybe<Scalars['String']['output']>;
|
|
id: Scalars['UUID']['output'];
|
|
jobType: Scalars['String']['output'];
|
|
lastUpdatedTime: Scalars['Instant']['output'];
|
|
metadata: Maybe<Array<KeyValuePairOfStringAndString>>;
|
|
parentJobId: Maybe<Scalars['UUID']['output']>;
|
|
status: JobStatus;
|
|
};
|
|
|
|
export type JobDtoFilterInput = {
|
|
and?: InputMaybe<Array<JobDtoFilterInput>>;
|
|
childJobs?: InputMaybe<ListFilterInputTypeOfJobDtoFilterInput>;
|
|
createdTime?: InputMaybe<InstantFilterInput>;
|
|
displayName?: InputMaybe<StringOperationFilterInput>;
|
|
errorMessage?: InputMaybe<StringOperationFilterInput>;
|
|
id?: InputMaybe<UuidOperationFilterInput>;
|
|
jobType?: InputMaybe<StringOperationFilterInput>;
|
|
lastUpdatedTime?: InputMaybe<InstantFilterInput>;
|
|
metadata?: InputMaybe<ListFilterInputTypeOfKeyValuePairOfStringAndStringFilterInput>;
|
|
or?: InputMaybe<Array<JobDtoFilterInput>>;
|
|
parentJobId?: InputMaybe<UuidOperationFilterInput>;
|
|
status?: InputMaybe<JobStatusOperationFilterInput>;
|
|
};
|
|
|
|
export type JobDtoSortInput = {
|
|
createdTime?: InputMaybe<SortEnumType>;
|
|
displayName?: InputMaybe<SortEnumType>;
|
|
errorMessage?: InputMaybe<SortEnumType>;
|
|
id?: InputMaybe<SortEnumType>;
|
|
jobType?: InputMaybe<SortEnumType>;
|
|
lastUpdatedTime?: InputMaybe<SortEnumType>;
|
|
parentJobId?: InputMaybe<SortEnumType>;
|
|
status?: InputMaybe<SortEnumType>;
|
|
};
|
|
|
|
export type JobKey = {
|
|
group: Scalars['String']['output'];
|
|
name: Scalars['String']['output'];
|
|
};
|
|
|
|
export type JobPersistenceError = Error & {
|
|
message: Scalars['String']['output'];
|
|
};
|
|
|
|
export const JobStatus = {
|
|
Completed: 'COMPLETED',
|
|
Failed: 'FAILED',
|
|
InProgress: 'IN_PROGRESS',
|
|
Pending: 'PENDING'
|
|
} as const;
|
|
|
|
export type JobStatus = typeof JobStatus[keyof typeof JobStatus];
|
|
export type JobStatusOperationFilterInput = {
|
|
eq?: InputMaybe<JobStatus>;
|
|
in?: InputMaybe<Array<JobStatus>>;
|
|
neq?: InputMaybe<JobStatus>;
|
|
nin?: InputMaybe<Array<JobStatus>>;
|
|
};
|
|
|
|
/** A connection to a list of items. */
|
|
export type JobsConnection = {
|
|
/** A list of edges. */
|
|
edges: Maybe<Array<JobsEdge>>;
|
|
/** A flattened list of the nodes. */
|
|
nodes: Maybe<Array<JobDto>>;
|
|
/** Information to aid in pagination. */
|
|
pageInfo: PageInfo;
|
|
};
|
|
|
|
/** An edge in a connection. */
|
|
export type JobsEdge = {
|
|
/** A cursor for use in pagination. */
|
|
cursor: Scalars['String']['output'];
|
|
/** The item at the end of the edge. */
|
|
node: JobDto;
|
|
};
|
|
|
|
export type KeyNotFoundError = Error & {
|
|
message: Scalars['String']['output'];
|
|
};
|
|
|
|
export type KeyValuePairOfStringAndString = {
|
|
key: Scalars['String']['output'];
|
|
value: Scalars['String']['output'];
|
|
};
|
|
|
|
export type KeyValuePairOfStringAndStringFilterInput = {
|
|
and?: InputMaybe<Array<KeyValuePairOfStringAndStringFilterInput>>;
|
|
key?: InputMaybe<StringOperationFilterInput>;
|
|
or?: InputMaybe<Array<KeyValuePairOfStringAndStringFilterInput>>;
|
|
value?: InputMaybe<StringOperationFilterInput>;
|
|
};
|
|
|
|
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<Language>;
|
|
in?: InputMaybe<Array<Language>>;
|
|
neq?: InputMaybe<Language>;
|
|
nin?: InputMaybe<Array<Language>>;
|
|
};
|
|
|
|
export type ListFilterInputTypeOfChapterDtoFilterInput = {
|
|
all?: InputMaybe<ChapterDtoFilterInput>;
|
|
any?: InputMaybe<Scalars['Boolean']['input']>;
|
|
none?: InputMaybe<ChapterDtoFilterInput>;
|
|
some?: InputMaybe<ChapterDtoFilterInput>;
|
|
};
|
|
|
|
export type ListFilterInputTypeOfImageDtoFilterInput = {
|
|
all?: InputMaybe<ImageDtoFilterInput>;
|
|
any?: InputMaybe<Scalars['Boolean']['input']>;
|
|
none?: InputMaybe<ImageDtoFilterInput>;
|
|
some?: InputMaybe<ImageDtoFilterInput>;
|
|
};
|
|
|
|
export type ListFilterInputTypeOfJobDtoFilterInput = {
|
|
all?: InputMaybe<JobDtoFilterInput>;
|
|
any?: InputMaybe<Scalars['Boolean']['input']>;
|
|
none?: InputMaybe<JobDtoFilterInput>;
|
|
some?: InputMaybe<JobDtoFilterInput>;
|
|
};
|
|
|
|
export type ListFilterInputTypeOfKeyValuePairOfStringAndStringFilterInput = {
|
|
all?: InputMaybe<KeyValuePairOfStringAndStringFilterInput>;
|
|
any?: InputMaybe<Scalars['Boolean']['input']>;
|
|
none?: InputMaybe<KeyValuePairOfStringAndStringFilterInput>;
|
|
some?: InputMaybe<KeyValuePairOfStringAndStringFilterInput>;
|
|
};
|
|
|
|
export type ListFilterInputTypeOfNovelTagDtoFilterInput = {
|
|
all?: InputMaybe<NovelTagDtoFilterInput>;
|
|
any?: InputMaybe<Scalars['Boolean']['input']>;
|
|
none?: InputMaybe<NovelTagDtoFilterInput>;
|
|
some?: InputMaybe<NovelTagDtoFilterInput>;
|
|
};
|
|
|
|
export type ListFilterInputTypeOfVolumeDtoFilterInput = {
|
|
all?: InputMaybe<VolumeDtoFilterInput>;
|
|
any?: InputMaybe<Scalars['Boolean']['input']>;
|
|
none?: InputMaybe<VolumeDtoFilterInput>;
|
|
some?: InputMaybe<VolumeDtoFilterInput>;
|
|
};
|
|
|
|
export type Mutation = {
|
|
addToReadingList: AddToReadingListPayload;
|
|
createReadingList: CreateReadingListPayload;
|
|
deleteJob: DeleteJobPayload;
|
|
deleteNovel: DeleteNovelPayload;
|
|
deleteReadingList: DeleteReadingListPayload;
|
|
fetchChapterContents: FetchChapterContentsPayload;
|
|
importNovel: ImportNovelPayload;
|
|
inviteUser: InviteUserPayload;
|
|
removeBookmark: RemoveBookmarkPayload;
|
|
removeFromReadingList: RemoveFromReadingListPayload;
|
|
reorderReadingListItem: ReorderReadingListItemPayload;
|
|
runJob: RunJobPayload;
|
|
scheduleEventJob: ScheduleEventJobPayload;
|
|
translateText: TranslateTextPayload;
|
|
updateReadingList: UpdateReadingListPayload;
|
|
upsertBookmark: UpsertBookmarkPayload;
|
|
};
|
|
|
|
|
|
export type MutationAddToReadingListArgs = {
|
|
input: AddToReadingListInput;
|
|
};
|
|
|
|
|
|
export type MutationCreateReadingListArgs = {
|
|
input: CreateReadingListInput;
|
|
};
|
|
|
|
|
|
export type MutationDeleteJobArgs = {
|
|
input: DeleteJobInput;
|
|
};
|
|
|
|
|
|
export type MutationDeleteNovelArgs = {
|
|
input: DeleteNovelInput;
|
|
};
|
|
|
|
|
|
export type MutationDeleteReadingListArgs = {
|
|
input: DeleteReadingListInput;
|
|
};
|
|
|
|
|
|
export type MutationFetchChapterContentsArgs = {
|
|
input: FetchChapterContentsInput;
|
|
};
|
|
|
|
|
|
export type MutationImportNovelArgs = {
|
|
input: ImportNovelInput;
|
|
};
|
|
|
|
|
|
export type MutationInviteUserArgs = {
|
|
input: InviteUserInput;
|
|
};
|
|
|
|
|
|
export type MutationRemoveBookmarkArgs = {
|
|
input: RemoveBookmarkInput;
|
|
};
|
|
|
|
|
|
export type MutationRemoveFromReadingListArgs = {
|
|
input: RemoveFromReadingListInput;
|
|
};
|
|
|
|
|
|
export type MutationReorderReadingListItemArgs = {
|
|
input: ReorderReadingListItemInput;
|
|
};
|
|
|
|
|
|
export type MutationRunJobArgs = {
|
|
input: RunJobInput;
|
|
};
|
|
|
|
|
|
export type MutationScheduleEventJobArgs = {
|
|
input: ScheduleEventJobInput;
|
|
};
|
|
|
|
|
|
export type MutationTranslateTextArgs = {
|
|
input: TranslateTextInput;
|
|
};
|
|
|
|
|
|
export type MutationUpdateReadingListArgs = {
|
|
input: UpdateReadingListInput;
|
|
};
|
|
|
|
|
|
export type MutationUpsertBookmarkArgs = {
|
|
input: UpsertBookmarkInput;
|
|
};
|
|
|
|
export type NovelDto = {
|
|
author: PersonDto;
|
|
coverImage: Maybe<ImageDto>;
|
|
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<NovelStatus>;
|
|
tags: Array<NovelTagDto>;
|
|
url: Scalars['String']['output'];
|
|
volumes: Array<VolumeDto>;
|
|
};
|
|
|
|
export type NovelDtoFilterInput = {
|
|
and?: InputMaybe<Array<NovelDtoFilterInput>>;
|
|
author?: InputMaybe<PersonDtoFilterInput>;
|
|
coverImage?: InputMaybe<ImageDtoFilterInput>;
|
|
createdTime?: InputMaybe<InstantFilterInput>;
|
|
description?: InputMaybe<StringOperationFilterInput>;
|
|
externalId?: InputMaybe<StringOperationFilterInput>;
|
|
id?: InputMaybe<UnsignedIntOperationFilterInputType>;
|
|
lastUpdatedTime?: InputMaybe<InstantFilterInput>;
|
|
name?: InputMaybe<StringOperationFilterInput>;
|
|
or?: InputMaybe<Array<NovelDtoFilterInput>>;
|
|
rawLanguage?: InputMaybe<LanguageOperationFilterInput>;
|
|
rawStatus?: InputMaybe<NovelStatusOperationFilterInput>;
|
|
source?: InputMaybe<SourceDtoFilterInput>;
|
|
statusOverride?: InputMaybe<NullableOfNovelStatusOperationFilterInput>;
|
|
tags?: InputMaybe<ListFilterInputTypeOfNovelTagDtoFilterInput>;
|
|
url?: InputMaybe<StringOperationFilterInput>;
|
|
volumes?: InputMaybe<ListFilterInputTypeOfVolumeDtoFilterInput>;
|
|
};
|
|
|
|
export type NovelDtoSortInput = {
|
|
author?: InputMaybe<PersonDtoSortInput>;
|
|
coverImage?: InputMaybe<ImageDtoSortInput>;
|
|
createdTime?: InputMaybe<SortEnumType>;
|
|
description?: InputMaybe<SortEnumType>;
|
|
externalId?: InputMaybe<SortEnumType>;
|
|
id?: InputMaybe<SortEnumType>;
|
|
lastUpdatedTime?: InputMaybe<SortEnumType>;
|
|
name?: InputMaybe<SortEnumType>;
|
|
rawLanguage?: InputMaybe<SortEnumType>;
|
|
rawStatus?: InputMaybe<SortEnumType>;
|
|
source?: InputMaybe<SourceDtoSortInput>;
|
|
statusOverride?: InputMaybe<SortEnumType>;
|
|
url?: InputMaybe<SortEnumType>;
|
|
};
|
|
|
|
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<NovelStatus>;
|
|
in?: InputMaybe<Array<NovelStatus>>;
|
|
neq?: InputMaybe<NovelStatus>;
|
|
nin?: InputMaybe<Array<NovelStatus>>;
|
|
};
|
|
|
|
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<SourceDto>;
|
|
tagType: TagType;
|
|
};
|
|
|
|
export type NovelTagDtoFilterInput = {
|
|
and?: InputMaybe<Array<NovelTagDtoFilterInput>>;
|
|
createdTime?: InputMaybe<InstantFilterInput>;
|
|
displayName?: InputMaybe<StringOperationFilterInput>;
|
|
id?: InputMaybe<UnsignedIntOperationFilterInputType>;
|
|
key?: InputMaybe<StringOperationFilterInput>;
|
|
lastUpdatedTime?: InputMaybe<InstantFilterInput>;
|
|
or?: InputMaybe<Array<NovelTagDtoFilterInput>>;
|
|
source?: InputMaybe<SourceDtoFilterInput>;
|
|
tagType?: InputMaybe<TagTypeOperationFilterInput>;
|
|
};
|
|
|
|
/** A connection to a list of items. */
|
|
export type NovelsConnection = {
|
|
/** A list of edges. */
|
|
edges: Maybe<Array<NovelsEdge>>;
|
|
/** A flattened list of the nodes. */
|
|
nodes: Maybe<Array<NovelDto>>;
|
|
/** 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<NovelStatus>;
|
|
in?: InputMaybe<Array<InputMaybe<NovelStatus>>>;
|
|
neq?: InputMaybe<NovelStatus>;
|
|
nin?: InputMaybe<Array<InputMaybe<NovelStatus>>>;
|
|
};
|
|
|
|
/** Information about pagination in a connection. */
|
|
export type PageInfo = {
|
|
/** When paginating forwards, the cursor to continue. */
|
|
endCursor: Maybe<Scalars['String']['output']>;
|
|
/** 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<Scalars['String']['output']>;
|
|
};
|
|
|
|
export type PersonDto = {
|
|
createdTime: Scalars['Instant']['output'];
|
|
externalUrl: Maybe<Scalars['String']['output']>;
|
|
id: Scalars['UnsignedInt']['output'];
|
|
lastUpdatedTime: Scalars['Instant']['output'];
|
|
name: Scalars['String']['output'];
|
|
};
|
|
|
|
export type PersonDtoFilterInput = {
|
|
and?: InputMaybe<Array<PersonDtoFilterInput>>;
|
|
createdTime?: InputMaybe<InstantFilterInput>;
|
|
externalUrl?: InputMaybe<StringOperationFilterInput>;
|
|
id?: InputMaybe<UnsignedIntOperationFilterInputType>;
|
|
lastUpdatedTime?: InputMaybe<InstantFilterInput>;
|
|
name?: InputMaybe<StringOperationFilterInput>;
|
|
or?: InputMaybe<Array<PersonDtoFilterInput>>;
|
|
};
|
|
|
|
export type PersonDtoSortInput = {
|
|
createdTime?: InputMaybe<SortEnumType>;
|
|
externalUrl?: InputMaybe<SortEnumType>;
|
|
id?: InputMaybe<SortEnumType>;
|
|
lastUpdatedTime?: InputMaybe<SortEnumType>;
|
|
name?: InputMaybe<SortEnumType>;
|
|
};
|
|
|
|
export type Query = {
|
|
bookmarks: Array<BookmarkDto>;
|
|
chapter: Maybe<ChapterReaderDto>;
|
|
currentUser: Maybe<UserDto>;
|
|
jobById: Maybe<JobDto>;
|
|
jobs: Maybe<JobsConnection>;
|
|
novels: Maybe<NovelsConnection>;
|
|
readingList: Maybe<ReadingListDto>;
|
|
readingLists: Array<ReadingListDto>;
|
|
scheduledJobs: Array<SchedulerJob>;
|
|
translationEngines: Array<TranslationEngineDescriptor>;
|
|
translationRequests: Maybe<TranslationRequestsConnection>;
|
|
};
|
|
|
|
|
|
export type QueryBookmarksArgs = {
|
|
novelId: Scalars['UnsignedInt']['input'];
|
|
};
|
|
|
|
|
|
export type QueryChapterArgs = {
|
|
chapterOrder: Scalars['UnsignedInt']['input'];
|
|
novelId: Scalars['UnsignedInt']['input'];
|
|
preferredLanguage?: Language;
|
|
volumeOrder: Scalars['UnsignedInt']['input'];
|
|
};
|
|
|
|
|
|
export type QueryJobByIdArgs = {
|
|
jobId: Scalars['UUID']['input'];
|
|
};
|
|
|
|
|
|
export type QueryJobsArgs = {
|
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
order?: InputMaybe<Array<JobDtoSortInput>>;
|
|
where?: InputMaybe<JobDtoFilterInput>;
|
|
};
|
|
|
|
|
|
export type QueryNovelsArgs = {
|
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
order?: InputMaybe<Array<NovelDtoSortInput>>;
|
|
preferredLanguage?: Language;
|
|
where?: InputMaybe<NovelDtoFilterInput>;
|
|
};
|
|
|
|
|
|
export type QueryReadingListArgs = {
|
|
id: Scalars['Int']['input'];
|
|
};
|
|
|
|
|
|
export type QueryTranslationEnginesArgs = {
|
|
order?: InputMaybe<Array<TranslationEngineDescriptorSortInput>>;
|
|
where?: InputMaybe<TranslationEngineDescriptorFilterInput>;
|
|
};
|
|
|
|
|
|
export type QueryTranslationRequestsArgs = {
|
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
order?: InputMaybe<Array<TranslationRequestDtoSortInput>>;
|
|
where?: InputMaybe<TranslationRequestDtoFilterInput>;
|
|
};
|
|
|
|
export type ReadingListDto = {
|
|
createdTime: Scalars['Instant']['output'];
|
|
description: Maybe<Scalars['String']['output']>;
|
|
id: Scalars['Int']['output'];
|
|
itemCount: Scalars['Int']['output'];
|
|
items: Array<ReadingListItemDto>;
|
|
name: Scalars['String']['output'];
|
|
};
|
|
|
|
export type ReadingListItemDto = {
|
|
addedTime: Scalars['Instant']['output'];
|
|
novelId: Scalars['UnsignedInt']['output'];
|
|
order: Scalars['Int']['output'];
|
|
};
|
|
|
|
export type ReadingListPayload = {
|
|
readingList: Maybe<ReadingListDto>;
|
|
success: Scalars['Boolean']['output'];
|
|
};
|
|
|
|
export type RemoveBookmarkError = InvalidOperationError;
|
|
|
|
export type RemoveBookmarkInput = {
|
|
chapterId: Scalars['UnsignedInt']['input'];
|
|
};
|
|
|
|
export type RemoveBookmarkPayload = {
|
|
bookmarkPayload: Maybe<BookmarkPayload>;
|
|
errors: Maybe<Array<RemoveBookmarkError>>;
|
|
};
|
|
|
|
export type RemoveFromReadingListError = InvalidOperationError;
|
|
|
|
export type RemoveFromReadingListInput = {
|
|
listId: Scalars['Int']['input'];
|
|
novelId: Scalars['UnsignedInt']['input'];
|
|
};
|
|
|
|
export type RemoveFromReadingListPayload = {
|
|
errors: Maybe<Array<RemoveFromReadingListError>>;
|
|
readingListPayload: Maybe<ReadingListPayload>;
|
|
};
|
|
|
|
export type ReorderReadingListItemError = InvalidOperationError;
|
|
|
|
export type ReorderReadingListItemInput = {
|
|
newOrder: Scalars['Int']['input'];
|
|
novelId: Scalars['UnsignedInt']['input'];
|
|
readingListId: Scalars['Int']['input'];
|
|
};
|
|
|
|
export type ReorderReadingListItemPayload = {
|
|
errors: Maybe<Array<ReorderReadingListItemError>>;
|
|
readingListPayload: Maybe<ReadingListPayload>;
|
|
};
|
|
|
|
export type RunJobError = JobPersistenceError;
|
|
|
|
export type RunJobInput = {
|
|
jobKey: Scalars['String']['input'];
|
|
};
|
|
|
|
export type RunJobPayload = {
|
|
boolean: Maybe<Scalars['Boolean']['output']>;
|
|
errors: Maybe<Array<RunJobError>>;
|
|
};
|
|
|
|
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<Array<ScheduleEventJobError>>;
|
|
schedulerJob: Maybe<SchedulerJob>;
|
|
};
|
|
|
|
export type SchedulerJob = {
|
|
cronSchedule: Array<Scalars['String']['output']>;
|
|
description: Scalars['String']['output'];
|
|
jobData: Array<KeyValuePairOfStringAndString>;
|
|
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<Array<SourceDtoFilterInput>>;
|
|
createdTime?: InputMaybe<InstantFilterInput>;
|
|
id?: InputMaybe<UnsignedIntOperationFilterInputType>;
|
|
key?: InputMaybe<StringOperationFilterInput>;
|
|
lastUpdatedTime?: InputMaybe<InstantFilterInput>;
|
|
name?: InputMaybe<StringOperationFilterInput>;
|
|
or?: InputMaybe<Array<SourceDtoFilterInput>>;
|
|
url?: InputMaybe<StringOperationFilterInput>;
|
|
};
|
|
|
|
export type SourceDtoSortInput = {
|
|
createdTime?: InputMaybe<SortEnumType>;
|
|
id?: InputMaybe<SortEnumType>;
|
|
key?: InputMaybe<SortEnumType>;
|
|
lastUpdatedTime?: InputMaybe<SortEnumType>;
|
|
name?: InputMaybe<SortEnumType>;
|
|
url?: InputMaybe<SortEnumType>;
|
|
};
|
|
|
|
export type StringOperationFilterInput = {
|
|
and?: InputMaybe<Array<StringOperationFilterInput>>;
|
|
contains?: InputMaybe<Scalars['String']['input']>;
|
|
endsWith?: InputMaybe<Scalars['String']['input']>;
|
|
eq?: InputMaybe<Scalars['String']['input']>;
|
|
in?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
ncontains?: InputMaybe<Scalars['String']['input']>;
|
|
nendsWith?: InputMaybe<Scalars['String']['input']>;
|
|
neq?: InputMaybe<Scalars['String']['input']>;
|
|
nin?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
nstartsWith?: InputMaybe<Scalars['String']['input']>;
|
|
or?: InputMaybe<Array<StringOperationFilterInput>>;
|
|
startsWith?: InputMaybe<Scalars['String']['input']>;
|
|
};
|
|
|
|
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<TagType>;
|
|
in?: InputMaybe<Array<TagType>>;
|
|
neq?: InputMaybe<TagType>;
|
|
nin?: InputMaybe<Array<TagType>>;
|
|
};
|
|
|
|
export type TranslateTextInput = {
|
|
from: Language;
|
|
text: Scalars['String']['input'];
|
|
to: Language;
|
|
translationEngineKey: Scalars['String']['input'];
|
|
};
|
|
|
|
export type TranslateTextPayload = {
|
|
translationResult: Maybe<TranslationResult>;
|
|
};
|
|
|
|
export type TranslationEngineDescriptor = {
|
|
displayName: Scalars['String']['output'];
|
|
key: Scalars['String']['output'];
|
|
};
|
|
|
|
export type TranslationEngineDescriptorFilterInput = {
|
|
and?: InputMaybe<Array<TranslationEngineDescriptorFilterInput>>;
|
|
displayName?: InputMaybe<StringOperationFilterInput>;
|
|
key?: InputMaybe<StringOperationFilterInput>;
|
|
or?: InputMaybe<Array<TranslationEngineDescriptorFilterInput>>;
|
|
};
|
|
|
|
export type TranslationEngineDescriptorSortInput = {
|
|
displayName?: InputMaybe<SortEnumType>;
|
|
key?: InputMaybe<SortEnumType>;
|
|
};
|
|
|
|
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<Scalars['String']['output']>;
|
|
translationEngineKey: Scalars['String']['output'];
|
|
};
|
|
|
|
export type TranslationRequestDtoFilterInput = {
|
|
and?: InputMaybe<Array<TranslationRequestDtoFilterInput>>;
|
|
billedCharacterCount?: InputMaybe<UnsignedIntOperationFilterInputType>;
|
|
createdTime?: InputMaybe<InstantFilterInput>;
|
|
from?: InputMaybe<LanguageOperationFilterInput>;
|
|
id?: InputMaybe<UuidOperationFilterInput>;
|
|
lastUpdatedTime?: InputMaybe<InstantFilterInput>;
|
|
or?: InputMaybe<Array<TranslationRequestDtoFilterInput>>;
|
|
originalText?: InputMaybe<StringOperationFilterInput>;
|
|
status?: InputMaybe<TranslationRequestStatusOperationFilterInput>;
|
|
to?: InputMaybe<LanguageOperationFilterInput>;
|
|
translatedText?: InputMaybe<StringOperationFilterInput>;
|
|
translationEngineKey?: InputMaybe<StringOperationFilterInput>;
|
|
};
|
|
|
|
export type TranslationRequestDtoSortInput = {
|
|
billedCharacterCount?: InputMaybe<SortEnumType>;
|
|
createdTime?: InputMaybe<SortEnumType>;
|
|
from?: InputMaybe<SortEnumType>;
|
|
id?: InputMaybe<SortEnumType>;
|
|
lastUpdatedTime?: InputMaybe<SortEnumType>;
|
|
originalText?: InputMaybe<SortEnumType>;
|
|
status?: InputMaybe<SortEnumType>;
|
|
to?: InputMaybe<SortEnumType>;
|
|
translatedText?: InputMaybe<SortEnumType>;
|
|
translationEngineKey?: InputMaybe<SortEnumType>;
|
|
};
|
|
|
|
export const TranslationRequestStatus = {
|
|
Failed: 'FAILED',
|
|
Pending: 'PENDING',
|
|
Success: 'SUCCESS'
|
|
} as const;
|
|
|
|
export type TranslationRequestStatus = typeof TranslationRequestStatus[keyof typeof TranslationRequestStatus];
|
|
export type TranslationRequestStatusOperationFilterInput = {
|
|
eq?: InputMaybe<TranslationRequestStatus>;
|
|
in?: InputMaybe<Array<TranslationRequestStatus>>;
|
|
neq?: InputMaybe<TranslationRequestStatus>;
|
|
nin?: InputMaybe<Array<TranslationRequestStatus>>;
|
|
};
|
|
|
|
/** A connection to a list of items. */
|
|
export type TranslationRequestsConnection = {
|
|
/** A list of edges. */
|
|
edges: Maybe<Array<TranslationRequestsEdge>>;
|
|
/** A flattened list of the nodes. */
|
|
nodes: Maybe<Array<TranslationRequestDto>>;
|
|
/** 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<Scalars['String']['output']>;
|
|
translationEngineKey: Scalars['String']['output'];
|
|
};
|
|
|
|
export type UnsignedIntOperationFilterInputType = {
|
|
eq?: InputMaybe<Scalars['UnsignedInt']['input']>;
|
|
gt?: InputMaybe<Scalars['UnsignedInt']['input']>;
|
|
gte?: InputMaybe<Scalars['UnsignedInt']['input']>;
|
|
in?: InputMaybe<Array<InputMaybe<Scalars['UnsignedInt']['input']>>>;
|
|
lt?: InputMaybe<Scalars['UnsignedInt']['input']>;
|
|
lte?: InputMaybe<Scalars['UnsignedInt']['input']>;
|
|
neq?: InputMaybe<Scalars['UnsignedInt']['input']>;
|
|
ngt?: InputMaybe<Scalars['UnsignedInt']['input']>;
|
|
ngte?: InputMaybe<Scalars['UnsignedInt']['input']>;
|
|
nin?: InputMaybe<Array<InputMaybe<Scalars['UnsignedInt']['input']>>>;
|
|
nlt?: InputMaybe<Scalars['UnsignedInt']['input']>;
|
|
nlte?: InputMaybe<Scalars['UnsignedInt']['input']>;
|
|
};
|
|
|
|
export type UpdateReadingListError = InvalidOperationError;
|
|
|
|
export type UpdateReadingListInput = {
|
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
id: Scalars['Int']['input'];
|
|
name: Scalars['String']['input'];
|
|
};
|
|
|
|
export type UpdateReadingListPayload = {
|
|
errors: Maybe<Array<UpdateReadingListError>>;
|
|
readingListPayload: Maybe<ReadingListPayload>;
|
|
};
|
|
|
|
export type UpsertBookmarkError = InvalidOperationError;
|
|
|
|
export type UpsertBookmarkInput = {
|
|
chapterId: Scalars['UnsignedInt']['input'];
|
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
novelId: Scalars['UnsignedInt']['input'];
|
|
};
|
|
|
|
export type UpsertBookmarkPayload = {
|
|
bookmarkPayload: Maybe<BookmarkPayload>;
|
|
errors: Maybe<Array<UpsertBookmarkError>>;
|
|
};
|
|
|
|
export type UserDto = {
|
|
availableInvites: Scalars['Int']['output'];
|
|
createdTime: Scalars['Instant']['output'];
|
|
disabled: Scalars['Boolean']['output'];
|
|
email: Scalars['String']['output'];
|
|
id: Scalars['UUID']['output'];
|
|
invitedUsers: Maybe<Array<InvitedUserDto>>;
|
|
inviterId: Maybe<Scalars['UUID']['output']>;
|
|
lastUpdatedTime: Scalars['Instant']['output'];
|
|
username: Scalars['String']['output'];
|
|
};
|
|
|
|
export type UuidOperationFilterInput = {
|
|
eq?: InputMaybe<Scalars['UUID']['input']>;
|
|
gt?: InputMaybe<Scalars['UUID']['input']>;
|
|
gte?: InputMaybe<Scalars['UUID']['input']>;
|
|
in?: InputMaybe<Array<InputMaybe<Scalars['UUID']['input']>>>;
|
|
lt?: InputMaybe<Scalars['UUID']['input']>;
|
|
lte?: InputMaybe<Scalars['UUID']['input']>;
|
|
neq?: InputMaybe<Scalars['UUID']['input']>;
|
|
ngt?: InputMaybe<Scalars['UUID']['input']>;
|
|
ngte?: InputMaybe<Scalars['UUID']['input']>;
|
|
nin?: InputMaybe<Array<InputMaybe<Scalars['UUID']['input']>>>;
|
|
nlt?: InputMaybe<Scalars['UUID']['input']>;
|
|
nlte?: InputMaybe<Scalars['UUID']['input']>;
|
|
};
|
|
|
|
export type VolumeDto = {
|
|
chapters: Array<ChapterDto>;
|
|
createdTime: Scalars['Instant']['output'];
|
|
id: Scalars['UnsignedInt']['output'];
|
|
lastUpdatedTime: Scalars['Instant']['output'];
|
|
name: Scalars['String']['output'];
|
|
order: Scalars['Int']['output'];
|
|
};
|
|
|
|
export type VolumeDtoFilterInput = {
|
|
and?: InputMaybe<Array<VolumeDtoFilterInput>>;
|
|
chapters?: InputMaybe<ListFilterInputTypeOfChapterDtoFilterInput>;
|
|
createdTime?: InputMaybe<InstantFilterInput>;
|
|
id?: InputMaybe<UnsignedIntOperationFilterInputType>;
|
|
lastUpdatedTime?: InputMaybe<InstantFilterInput>;
|
|
name?: InputMaybe<StringOperationFilterInput>;
|
|
or?: InputMaybe<Array<VolumeDtoFilterInput>>;
|
|
order?: InputMaybe<IntOperationFilterInput>;
|
|
};
|
|
|
|
export type AddToReadingListMutationVariables = Exact<{
|
|
input: AddToReadingListInput;
|
|
}>;
|
|
|
|
|
|
export type AddToReadingListMutation = { addToReadingList: { readingListPayload: { success: boolean, readingList: { id: number, name: string, itemCount: number } | null } | null, errors: Array<{ message: string }> | null } };
|
|
|
|
export type CreateReadingListMutationVariables = Exact<{
|
|
input: CreateReadingListInput;
|
|
}>;
|
|
|
|
|
|
export type CreateReadingListMutation = { createReadingList: { readingListPayload: { success: boolean, readingList: { id: number, name: string, description: string | null, itemCount: number, createdTime: any } | null } | null, errors: Array<{ message: string }> | null } };
|
|
|
|
export type DeleteNovelMutationVariables = Exact<{
|
|
input: DeleteNovelInput;
|
|
}>;
|
|
|
|
|
|
export type DeleteNovelMutation = { deleteNovel: { boolean: boolean | null, errors: Array<{ message: string }> | null } };
|
|
|
|
export type DeleteReadingListMutationVariables = Exact<{
|
|
input: DeleteReadingListInput;
|
|
}>;
|
|
|
|
|
|
export type DeleteReadingListMutation = { deleteReadingList: { success: boolean | null, errors: Array<{ message: string }> | null } };
|
|
|
|
export type ImportNovelMutationVariables = Exact<{
|
|
input: ImportNovelInput;
|
|
}>;
|
|
|
|
|
|
export type ImportNovelMutation = { importNovel: { importNovelResult: { importId: any, novelUrl: string } | null, errors: Array<{ message: string }> | null } };
|
|
|
|
export type InviteUserMutationVariables = Exact<{
|
|
input: InviteUserInput;
|
|
}>;
|
|
|
|
|
|
export type InviteUserMutation = { inviteUser: { userDto: { id: any, username: string, email: string } | null, errors: Array<{ message: string }> | null } };
|
|
|
|
export type RemoveBookmarkMutationVariables = Exact<{
|
|
input: RemoveBookmarkInput;
|
|
}>;
|
|
|
|
|
|
export type RemoveBookmarkMutation = { removeBookmark: { bookmarkPayload: { success: boolean } | null, errors: Array<{ message: string }> | null } };
|
|
|
|
export type RemoveFromReadingListMutationVariables = Exact<{
|
|
input: RemoveFromReadingListInput;
|
|
}>;
|
|
|
|
|
|
export type RemoveFromReadingListMutation = { removeFromReadingList: { readingListPayload: { success: boolean, readingList: { id: number, name: string, itemCount: number } | null } | null, errors: Array<{ message: string }> | null } };
|
|
|
|
export type ReorderReadingListItemMutationVariables = Exact<{
|
|
input: ReorderReadingListItemInput;
|
|
}>;
|
|
|
|
|
|
export type ReorderReadingListItemMutation = { reorderReadingListItem: { readingListPayload: { success: boolean } | null, errors: Array<{ message: string }> | null } };
|
|
|
|
export type UpdateReadingListMutationVariables = Exact<{
|
|
input: UpdateReadingListInput;
|
|
}>;
|
|
|
|
|
|
export type UpdateReadingListMutation = { updateReadingList: { readingListPayload: { success: boolean, readingList: { id: number, name: string, description: string | null, itemCount: number, createdTime: any } | null } | null, errors: Array<{ message: string }> | null } };
|
|
|
|
export type UpsertBookmarkMutationVariables = Exact<{
|
|
input: UpsertBookmarkInput;
|
|
}>;
|
|
|
|
|
|
export type UpsertBookmarkMutation = { upsertBookmark: { bookmarkPayload: { success: boolean, bookmark: { id: number, chapterId: any, novelId: any, description: string | null, createdTime: any } | null } | null, errors: Array<{ message: string }> | null } };
|
|
|
|
export type GetBookmarksQueryVariables = Exact<{
|
|
novelId: Scalars['UnsignedInt']['input'];
|
|
}>;
|
|
|
|
|
|
export type GetBookmarksQuery = { bookmarks: Array<{ id: number, chapterId: any, novelId: any, description: string | null, createdTime: any }> };
|
|
|
|
export type GetChapterQueryVariables = Exact<{
|
|
novelId: Scalars['UnsignedInt']['input'];
|
|
volumeOrder: 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, volumeId: any, volumeName: string, volumeOrder: number, totalChaptersInVolume: number, prevChapterVolumeOrder: number | null, prevChapterOrder: any | null, nextChapterVolumeOrder: number | null, nextChapterOrder: any | null, images: Array<{ id: any, newPath: string | null }> } | null };
|
|
|
|
export type JobsQueryVariables = Exact<{
|
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
where?: InputMaybe<JobDtoFilterInput>;
|
|
order?: InputMaybe<Array<JobDtoSortInput> | JobDtoSortInput>;
|
|
}>;
|
|
|
|
|
|
export type JobsQuery = { jobs: { edges: Array<{ cursor: string, node: { id: any, parentJobId: any | null, jobType: string, displayName: string, status: JobStatus, errorMessage: string | null, createdTime: any, lastUpdatedTime: any, metadata: Array<{ key: string, value: string }> | null, childJobs: Array<{ id: any, jobType: string, displayName: string, status: JobStatus, errorMessage: string | null, createdTime: any, lastUpdatedTime: any, metadata: Array<{ key: string, value: string }> | null }> | null } }> | null, pageInfo: { hasNextPage: boolean, hasPreviousPage: boolean, startCursor: string | null, endCursor: 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 }>, volumes: Array<{ id: any, order: number, name: string, createdTime: any, lastUpdatedTime: any, 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<Scalars['Int']['input']>;
|
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
where?: InputMaybe<NovelDtoFilterInput>;
|
|
order?: InputMaybe<Array<NovelDtoSortInput> | NovelDtoSortInput>;
|
|
}>;
|
|
|
|
|
|
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, volumes: Array<{ id: any, order: number, name: string, chapters: Array<{ order: any, name: string }> }>, tags: Array<{ key: string, displayName: string, tagType: TagType }> } }> | null, pageInfo: { hasNextPage: boolean, endCursor: string | null } } | null };
|
|
|
|
export type GetReadingListQueryVariables = Exact<{
|
|
id: Scalars['Int']['input'];
|
|
}>;
|
|
|
|
|
|
export type GetReadingListQuery = { readingList: { id: number, name: string, description: string | null, itemCount: number, createdTime: any, items: Array<{ novelId: any, order: number, addedTime: any }> } | null };
|
|
|
|
export type GetReadingListsQueryVariables = Exact<{ [key: string]: never; }>;
|
|
|
|
|
|
export type GetReadingListsQuery = { readingLists: Array<{ id: number, name: string, description: string | null, itemCount: number, createdTime: any }> };
|
|
|
|
export type GetReadingListsWithItemsQueryVariables = Exact<{ [key: string]: never; }>;
|
|
|
|
|
|
export type GetReadingListsWithItemsQuery = { readingLists: Array<{ id: number, name: string, description: string | null, itemCount: number, createdTime: any, items: Array<{ novelId: any, order: number, addedTime: any }> }> };
|
|
|
|
export type GetSettingsPageDataQueryVariables = Exact<{ [key: string]: never; }>;
|
|
|
|
|
|
export type GetSettingsPageDataQuery = { currentUser: { id: any, username: string, availableInvites: number, invitedUsers: Array<{ username: string, email: string }> | null } | null };
|
|
|
|
|
|
export const AddToReadingListDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"AddToReadingList"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AddToReadingListInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"addToReadingList"},"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":"readingListPayload"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"success"}},{"kind":"Field","name":{"kind":"Name","value":"readingList"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"itemCount"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Error"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"message"}}]}}]}}]}}]}}]} as unknown as DocumentNode<AddToReadingListMutation, AddToReadingListMutationVariables>;
|
|
export const CreateReadingListDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"CreateReadingList"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CreateReadingListInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createReadingList"},"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":"readingListPayload"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"success"}},{"kind":"Field","name":{"kind":"Name","value":"readingList"},"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":"itemCount"}},{"kind":"Field","name":{"kind":"Name","value":"createdTime"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Error"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"message"}}]}}]}}]}}]}}]} as unknown as DocumentNode<CreateReadingListMutation, CreateReadingListMutationVariables>;
|
|
export const DeleteNovelDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"DeleteNovel"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DeleteNovelInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deleteNovel"},"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":"boolean"}},{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Error"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"message"}}]}}]}}]}}]}}]} as unknown as DocumentNode<DeleteNovelMutation, DeleteNovelMutationVariables>;
|
|
export const DeleteReadingListDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"DeleteReadingList"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DeleteReadingListInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deleteReadingList"},"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":"success"}},{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Error"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"message"}}]}}]}}]}}]}}]} as unknown as DocumentNode<DeleteReadingListMutation, DeleteReadingListMutationVariables>;
|
|
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":"importNovelResult"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"importId"}},{"kind":"Field","name":{"kind":"Name","value":"novelUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"InvalidOperationError"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"message"}}]}}]}}]}}]}}]} as unknown as DocumentNode<ImportNovelMutation, ImportNovelMutationVariables>;
|
|
export const InviteUserDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"InviteUser"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"InviteUserInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"inviteUser"},"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":"userDto"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"username"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}},{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"InvalidOperationError"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"message"}}]}}]}}]}}]}}]} as unknown as DocumentNode<InviteUserMutation, InviteUserMutationVariables>;
|
|
export const RemoveBookmarkDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"RemoveBookmark"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"RemoveBookmarkInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"removeBookmark"},"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":"bookmarkPayload"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"success"}}]}},{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Error"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"message"}}]}}]}}]}}]}}]} as unknown as DocumentNode<RemoveBookmarkMutation, RemoveBookmarkMutationVariables>;
|
|
export const RemoveFromReadingListDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"RemoveFromReadingList"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"RemoveFromReadingListInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"removeFromReadingList"},"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":"readingListPayload"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"success"}},{"kind":"Field","name":{"kind":"Name","value":"readingList"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"itemCount"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Error"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"message"}}]}}]}}]}}]}}]} as unknown as DocumentNode<RemoveFromReadingListMutation, RemoveFromReadingListMutationVariables>;
|
|
export const ReorderReadingListItemDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"ReorderReadingListItem"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReorderReadingListItemInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"reorderReadingListItem"},"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":"readingListPayload"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"success"}}]}},{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Error"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"message"}}]}}]}}]}}]}}]} as unknown as DocumentNode<ReorderReadingListItemMutation, ReorderReadingListItemMutationVariables>;
|
|
export const UpdateReadingListDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateReadingList"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UpdateReadingListInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateReadingList"},"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":"readingListPayload"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"success"}},{"kind":"Field","name":{"kind":"Name","value":"readingList"},"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":"itemCount"}},{"kind":"Field","name":{"kind":"Name","value":"createdTime"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Error"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"message"}}]}}]}}]}}]}}]} as unknown as DocumentNode<UpdateReadingListMutation, UpdateReadingListMutationVariables>;
|
|
export const UpsertBookmarkDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpsertBookmark"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UpsertBookmarkInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"upsertBookmark"},"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":"bookmarkPayload"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"success"}},{"kind":"Field","name":{"kind":"Name","value":"bookmark"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"chapterId"}},{"kind":"Field","name":{"kind":"Name","value":"novelId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"createdTime"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"errors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Error"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"message"}}]}}]}}]}}]}}]} as unknown as DocumentNode<UpsertBookmarkMutation, UpsertBookmarkMutationVariables>;
|
|
export const GetBookmarksDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetBookmarks"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"novelId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UnsignedInt"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bookmarks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"novelId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"novelId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"chapterId"}},{"kind":"Field","name":{"kind":"Name","value":"novelId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"createdTime"}}]}}]}}]} as unknown as DocumentNode<GetBookmarksQuery, GetBookmarksQueryVariables>;
|
|
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":"volumeOrder"}},"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":"volumeOrder"},"value":{"kind":"Variable","name":{"kind":"Name","value":"volumeOrder"}}},{"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":"volumeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeName"}},{"kind":"Field","name":{"kind":"Name","value":"volumeOrder"}},{"kind":"Field","name":{"kind":"Name","value":"totalChaptersInVolume"}},{"kind":"Field","name":{"kind":"Name","value":"prevChapterVolumeOrder"}},{"kind":"Field","name":{"kind":"Name","value":"prevChapterOrder"}},{"kind":"Field","name":{"kind":"Name","value":"nextChapterVolumeOrder"}},{"kind":"Field","name":{"kind":"Name","value":"nextChapterOrder"}}]}}]}}]} as unknown as DocumentNode<GetChapterQuery, GetChapterQueryVariables>;
|
|
export const JobsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Jobs"},"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":"JobDtoFilterInput"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"order"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JobDtoSortInput"}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"jobs"},"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"}}},{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"Variable","name":{"kind":"Name","value":"order"}}}],"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":"parentJobId"}},{"kind":"Field","name":{"kind":"Name","value":"jobType"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"errorMessage"}},{"kind":"Field","name":{"kind":"Name","value":"metadata"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdTime"}},{"kind":"Field","name":{"kind":"Name","value":"lastUpdatedTime"}},{"kind":"Field","name":{"kind":"Name","value":"childJobs"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"jobType"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"errorMessage"}},{"kind":"Field","name":{"kind":"Name","value":"metadata"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdTime"}},{"kind":"Field","name":{"kind":"Name","value":"lastUpdatedTime"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"pageInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hasNextPage"}},{"kind":"Field","name":{"kind":"Name","value":"hasPreviousPage"}},{"kind":"Field","name":{"kind":"Name","value":"startCursor"}},{"kind":"Field","name":{"kind":"Name","value":"endCursor"}}]}}]}}]}}]} as unknown as DocumentNode<JobsQuery, JobsQueryVariables>;
|
|
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":"volumes"},"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":"createdTime"}},{"kind":"Field","name":{"kind":"Name","value":"lastUpdatedTime"}},{"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<NovelQuery, NovelQueryVariables>;
|
|
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"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"order"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NovelDtoSortInput"}}}}}],"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"}}},{"kind":"Argument","name":{"kind":"Name","value":"order"},"value":{"kind":"Variable","name":{"kind":"Name","value":"order"}}}],"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":"volumes"},"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":"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":"tagType"}}]}}]}}]}},{"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<NovelsQuery, NovelsQueryVariables>;
|
|
export const GetReadingListDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetReadingList"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"readingList"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}],"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":"itemCount"}},{"kind":"Field","name":{"kind":"Name","value":"createdTime"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"novelId"}},{"kind":"Field","name":{"kind":"Name","value":"order"}},{"kind":"Field","name":{"kind":"Name","value":"addedTime"}}]}}]}}]}}]} as unknown as DocumentNode<GetReadingListQuery, GetReadingListQueryVariables>;
|
|
export const GetReadingListsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetReadingLists"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"readingLists"},"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":"itemCount"}},{"kind":"Field","name":{"kind":"Name","value":"createdTime"}}]}}]}}]} as unknown as DocumentNode<GetReadingListsQuery, GetReadingListsQueryVariables>;
|
|
export const GetReadingListsWithItemsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetReadingListsWithItems"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"readingLists"},"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":"itemCount"}},{"kind":"Field","name":{"kind":"Name","value":"createdTime"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"novelId"}},{"kind":"Field","name":{"kind":"Name","value":"order"}},{"kind":"Field","name":{"kind":"Name","value":"addedTime"}}]}}]}}]}}]} as unknown as DocumentNode<GetReadingListsWithItemsQuery, GetReadingListsWithItemsQueryVariables>;
|
|
export const GetSettingsPageDataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetSettingsPageData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currentUser"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"username"}},{"kind":"Field","name":{"kind":"Name","value":"availableInvites"}},{"kind":"Field","name":{"kind":"Name","value":"invitedUsers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"username"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}}]}}]} as unknown as DocumentNode<GetSettingsPageDataQuery, GetSettingsPageDataQueryVariables>; |