-
Notifications
You must be signed in to change notification settings - Fork 3
/
schema.graphql
2186 lines (1912 loc) · 46.8 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""Exposes a URL that specifies the behaviour of this scalar."""
directive @specifiedBy(
"""The URL that specifies the behaviour of this scalar."""
url: String!
) on SCALAR
type AboutServerPayload {
buildTime: LongString!
buildType: String!
discord: String!
github: String!
name: String!
revision: String!
version: String!
}
type AboutWebUI {
channel: String!
tag: String!
}
enum BackupRestoreState {
IDLE
SUCCESS
FAILURE
RESTORING_CATEGORIES
RESTORING_MANGA
}
type BackupRestoreStatus {
mangaProgress: Int!
state: BackupRestoreState!
totalManga: Int!
}
input BindTrackInput {
clientMutationId: String
mangaId: Int!
remoteId: LongString!
trackerId: Int!
}
type BindTrackPayload {
clientMutationId: String
trackRecord: TrackRecordType!
}
input BooleanFilterInput {
distinctFrom: Boolean
distinctFromAll: [Boolean!]
distinctFromAny: [Boolean!]
equalTo: Boolean
greaterThan: Boolean
greaterThanOrEqualTo: Boolean
in: [Boolean!]
isNull: Boolean
lessThan: Boolean
lessThanOrEqualTo: Boolean
notDistinctFrom: Boolean
notEqualTo: Boolean
notEqualToAll: [Boolean!]
notEqualToAny: [Boolean!]
notIn: [Boolean!]
}
input CategoryConditionInput {
default: Boolean
id: Int
name: String
order: Int
}
type CategoryEdge implements Edge {
cursor: Cursor!
node: CategoryType!
}
input CategoryFilterInput {
and: [CategoryFilterInput!]
default: BooleanFilterInput
id: IntFilterInput
name: StringFilterInput
not: CategoryFilterInput
or: [CategoryFilterInput!]
order: IntFilterInput
}
type CategoryMetaType implements MetaType {
categoryId: Int!
key: String!
value: String!
category: CategoryType!
}
input CategoryMetaTypeInput {
categoryId: Int!
key: String!
value: String!
}
type CategoryNodeList implements NodeList {
edges: [CategoryEdge!]!
nodes: [CategoryType!]!
pageInfo: PageInfo!
totalCount: Int!
}
enum CategoryOrderBy {
ID
NAME
ORDER
}
input CategoryOrderInput {
by: CategoryOrderBy!
byType: SortOrder
}
type CategoryType {
default: Boolean!
id: Int!
includeInDownload: IncludeOrExclude!
includeInUpdate: IncludeOrExclude!
name: String!
order: Int!
mangas: MangaNodeList!
meta: [CategoryMetaType!]!
}
input ChapterConditionInput {
chapterNumber: Float
fetchedAt: LongString
id: Int
isBookmarked: Boolean
isDownloaded: Boolean
isRead: Boolean
lastPageRead: Int
lastReadAt: LongString
mangaId: Int
name: String
pageCount: Int
realUrl: String
scanlator: String
sourceOrder: Int
uploadDate: LongString
url: String
}
type ChapterEdge implements Edge {
cursor: Cursor!
node: ChapterType!
}
input ChapterFilterInput {
and: [ChapterFilterInput!]
chapterNumber: FloatFilterInput
fetchedAt: LongFilterInput
id: IntFilterInput
inLibrary: BooleanFilterInput
isBookmarked: BooleanFilterInput
isDownloaded: BooleanFilterInput
isRead: BooleanFilterInput
lastPageRead: IntFilterInput
lastReadAt: LongFilterInput
mangaId: IntFilterInput
name: StringFilterInput
not: ChapterFilterInput
or: [ChapterFilterInput!]
pageCount: IntFilterInput
realUrl: StringFilterInput
scanlator: StringFilterInput
sourceOrder: IntFilterInput
uploadDate: LongFilterInput
url: StringFilterInput
}
type ChapterMetaType implements MetaType {
chapterId: Int!
key: String!
value: String!
chapter: ChapterType!
}
input ChapterMetaTypeInput {
chapterId: Int!
key: String!
value: String!
}
type ChapterNodeList implements NodeList {
edges: [ChapterEdge!]!
nodes: [ChapterType!]!
pageInfo: PageInfo!
totalCount: Int!
}
enum ChapterOrderBy {
ID
SOURCE_ORDER
NAME
UPLOAD_DATE
CHAPTER_NUMBER
LAST_READ_AT
FETCHED_AT
}
input ChapterOrderInput {
by: ChapterOrderBy!
byType: SortOrder
}
type ChapterType {
chapterNumber: Float!
fetchedAt: LongString!
id: Int!
isBookmarked: Boolean!
isDownloaded: Boolean!
isRead: Boolean!
lastPageRead: Int!
lastReadAt: LongString!
mangaId: Int!
name: String!
pageCount: Int!
realUrl: String
scanlator: String
sourceOrder: Int!
uploadDate: LongString!
url: String!
manga: MangaType!
meta: [ChapterMetaType!]!
}
type CheckBoxFilter {
default: Boolean!
name: String!
}
type CheckBoxPreference {
currentValue: Boolean
default: Boolean!
key: String!
summary: String
title: String!
visible: Boolean!
}
type CheckForServerUpdatesPayload {
channel: String!
tag: String!
url: String!
}
input ClearCachedImagesInput {
cachedPages: Boolean
cachedThumbnails: Boolean
clientMutationId: String
downloadedThumbnails: Boolean
}
type ClearCachedImagesPayload {
cachedPages: Boolean
cachedThumbnails: Boolean
clientMutationId: String
downloadedThumbnails: Boolean
}
input ClearDownloaderInput {
clientMutationId: String
}
type ClearDownloaderPayload {
clientMutationId: String
downloadStatus: DownloadStatus!
}
input CreateBackupInput {
clientMutationId: String
includeCategories: Boolean
includeChapters: Boolean
}
type CreateBackupPayload {
clientMutationId: String
url: String!
}
input CreateCategoryInput {
clientMutationId: String
default: Boolean
includeInDownload: IncludeOrExclude
includeInUpdate: IncludeOrExclude
name: String!
order: Int
}
type CreateCategoryPayload {
category: CategoryType!
clientMutationId: String
}
"""A location in a connection that can be used for resuming pagination."""
scalar Cursor
input DeleteCategoryInput {
categoryId: Int!
clientMutationId: String
}
input DeleteCategoryMetaInput {
categoryId: Int!
clientMutationId: String
key: String!
}
type DeleteCategoryMetaPayload {
category: CategoryType!
clientMutationId: String
meta: CategoryMetaType
}
type DeleteCategoryPayload {
category: CategoryType
clientMutationId: String
mangas: [MangaType!]!
}
input DeleteChapterMetaInput {
chapterId: Int!
clientMutationId: String
key: String!
}
type DeleteChapterMetaPayload {
chapter: ChapterType!
clientMutationId: String
meta: ChapterMetaType
}
input DeleteDownloadedChapterInput {
clientMutationId: String
id: Int!
}
type DeleteDownloadedChapterPayload {
chapters: ChapterType!
clientMutationId: String
}
input DeleteDownloadedChaptersInput {
clientMutationId: String
ids: [Int!]!
}
type DeleteDownloadedChaptersPayload {
chapters: [ChapterType!]!
clientMutationId: String
}
input DeleteGlobalMetaInput {
clientMutationId: String
key: String!
}
type DeleteGlobalMetaPayload {
clientMutationId: String
meta: GlobalMetaType
}
input DeleteMangaMetaInput {
clientMutationId: String
key: String!
mangaId: Int!
}
type DeleteMangaMetaPayload {
clientMutationId: String
manga: MangaType!
meta: MangaMetaType
}
input DeleteSourceMetaInput {
clientMutationId: String
key: String!
sourceId: LongString!
}
type DeleteSourceMetaPayload {
clientMutationId: String
meta: SourceMetaType
source: SourceType
}
input DequeueChapterDownloadInput {
clientMutationId: String
id: Int!
}
type DequeueChapterDownloadPayload {
clientMutationId: String
downloadStatus: DownloadStatus!
}
input DequeueChapterDownloadsInput {
clientMutationId: String
ids: [Int!]!
}
type DequeueChapterDownloadsPayload {
clientMutationId: String
downloadStatus: DownloadStatus!
}
input DoubleFilterInput {
distinctFrom: Float
distinctFromAll: [Float!]
distinctFromAny: [Float!]
equalTo: Float
greaterThan: Float
greaterThanOrEqualTo: Float
in: [Float!]
isNull: Boolean
lessThan: Float
lessThanOrEqualTo: Float
notDistinctFrom: Float
notEqualTo: Float
notEqualToAll: [Float!]
notEqualToAny: [Float!]
notIn: [Float!]
}
input DownloadChangedInput {
"""
Sets a max number of updates that can be contained in a download update
message.Everything above this limit will be omitted and the "downloadStatus"
should be re-fetched via the corresponding query. Due to the graphql
subscription execution strategy not supporting batching for data loaders, the
data loaders run into the n+1 problem, which can cause the server to get
unresponsive until the status update has been handled. This is an issue e.g.
when mass en- or dequeuing downloads.
"""
maxUpdates: Int
}
type DownloadEdge implements Edge {
cursor: Cursor!
node: DownloadType!
}
enum DownloaderState {
STARTED
STOPPED
}
type DownloadNodeList implements NodeList {
edges: [DownloadEdge!]!
nodes: [DownloadType!]!
pageInfo: PageInfo!
totalCount: Int!
}
enum DownloadState {
QUEUED
DOWNLOADING
FINISHED
ERROR
}
type DownloadStatus {
queue: [DownloadType!]!
state: DownloaderState!
}
type DownloadType {
position: Int!
progress: Float!
state: DownloadState!
tries: Int!
chapter: ChapterType!
manga: MangaType!
}
type DownloadUpdate {
download: DownloadType!
type: DownloadUpdateType!
}
type DownloadUpdates {
"""
The current download queue at the time of sending initial message. Is null for all following messages
"""
initial: [DownloadType!]
"""
Indicates whether updates have been omitted based on the "maxUpdates"
subscription variable. In case updates have been omitted, the "downloadStatus"
query should be re-fetched.
"""
omittedUpdates: Boolean!
state: DownloaderState!
updates: [DownloadUpdate!]!
}
enum DownloadUpdateType {
QUEUED
DEQUEUED
PROGRESS
FINISHED
ERROR
POSITION
}
interface Edge {
"""A cursor for use in pagination."""
cursor: Cursor!
"""The [T] at the end of the edge."""
node: Node!
}
type EditTextPreference {
currentValue: String
default: String
dialogMessage: String
dialogTitle: String
key: String!
summary: String
text: String
title: String
visible: Boolean!
}
input EnqueueChapterDownloadInput {
clientMutationId: String
id: Int!
}
type EnqueueChapterDownloadPayload {
clientMutationId: String
downloadStatus: DownloadStatus!
}
input EnqueueChapterDownloadsInput {
clientMutationId: String
ids: [Int!]!
}
type EnqueueChapterDownloadsPayload {
clientMutationId: String
downloadStatus: DownloadStatus!
}
input ExtensionConditionInput {
apkName: String
hasUpdate: Boolean
iconUrl: String
isInstalled: Boolean
isNsfw: Boolean
isObsolete: Boolean
lang: String
name: String
pkgName: String
repo: String
versionCode: Int
versionName: String
}
type ExtensionEdge implements Edge {
cursor: Cursor!
node: ExtensionType!
}
input ExtensionFilterInput {
and: [ExtensionFilterInput!]
apkName: StringFilterInput
hasUpdate: BooleanFilterInput
iconUrl: StringFilterInput
isInstalled: BooleanFilterInput
isNsfw: BooleanFilterInput
isObsolete: BooleanFilterInput
lang: StringFilterInput
name: StringFilterInput
not: ExtensionFilterInput
or: [ExtensionFilterInput!]
pkgName: StringFilterInput
repo: StringFilterInput
versionCode: IntFilterInput
versionName: StringFilterInput
}
type ExtensionNodeList implements NodeList {
edges: [ExtensionEdge!]!
nodes: [ExtensionType!]!
pageInfo: PageInfo!
totalCount: Int!
}
enum ExtensionOrderBy {
PKG_NAME
NAME
APK_NAME
}
input ExtensionOrderInput {
by: ExtensionOrderBy!
byType: SortOrder
}
type ExtensionType {
apkName: String!
hasUpdate: Boolean!
iconUrl: String!
isInstalled: Boolean!
isNsfw: Boolean!
isObsolete: Boolean!
lang: String!
name: String!
pkgName: String!
repo: String
versionCode: Int!
versionName: String!
source: SourceNodeList!
}
input FetchChapterPagesInput {
chapterId: Int!
clientMutationId: String
}
type FetchChapterPagesPayload {
chapter: ChapterType!
clientMutationId: String
pages: [String!]!
}
input FetchChaptersInput {
clientMutationId: String
mangaId: Int!
}
type FetchChaptersPayload {
chapters: [ChapterType!]!
clientMutationId: String
}
input FetchExtensionsInput {
clientMutationId: String
}
type FetchExtensionsPayload {
clientMutationId: String
extensions: [ExtensionType!]!
}
input FetchMangaInput {
clientMutationId: String
id: Int!
}
type FetchMangaPayload {
clientMutationId: String
manga: MangaType!
}
input FetchSourceMangaInput {
clientMutationId: String
filters: [FilterChangeInput!]
page: Int!
query: String
source: LongString!
type: FetchSourceMangaType!
}
type FetchSourceMangaPayload {
clientMutationId: String
hasNextPage: Boolean!
mangas: [MangaType!]!
}
enum FetchSourceMangaType {
SEARCH
POPULAR
LATEST
}
input FetchTrackInput {
clientMutationId: String
recordId: Int!
}
type FetchTrackPayload {
clientMutationId: String
trackRecord: TrackRecordType!
}
union Filter = CheckBoxFilter | GroupFilter | HeaderFilter | SelectFilter | SeparatorFilter | SortFilter | TextFilter | TriStateFilter
input FilterChangeInput {
checkBoxState: Boolean
groupChange: FilterChangeInput
position: Int!
selectState: Int
sortState: SortSelectionInput
textState: String
triState: TriState
}
input FloatFilterInput {
distinctFrom: Float
distinctFromAll: [Float!]
distinctFromAny: [Float!]
equalTo: Float
greaterThan: Float
greaterThanOrEqualTo: Float
in: [Float!]
isNull: Boolean
lessThan: Float
lessThanOrEqualTo: Float
notDistinctFrom: Float
notEqualTo: Float
notEqualToAll: [Float!]
notEqualToAny: [Float!]
notIn: [Float!]
}
type GlobalMetaNodeList implements NodeList {
edges: [MetaEdge!]!
nodes: [GlobalMetaType!]!
pageInfo: PageInfo!
totalCount: Int!
}
type GlobalMetaType implements MetaType {
key: String!
value: String!
}
input GlobalMetaTypeInput {
key: String!
value: String!
}
type GroupFilter {
filters: [Filter!]!
name: String!
}
type HeaderFilter {
name: String!
}
enum IncludeOrExclude {
EXCLUDE
INCLUDE
UNSET
}
input InstallExternalExtensionInput {
clientMutationId: String
extensionFile: Upload!
}
type InstallExternalExtensionPayload {
clientMutationId: String
extension: ExtensionType!
}
input IntFilterInput {
distinctFrom: Int
distinctFromAll: [Int!]
distinctFromAny: [Int!]
equalTo: Int
greaterThan: Int
greaterThanOrEqualTo: Int
in: [Int!]
isNull: Boolean
lessThan: Int
lessThanOrEqualTo: Int
notDistinctFrom: Int
notEqualTo: Int
notEqualToAll: [Int!]
notEqualToAny: [Int!]
notIn: [Int!]
}
type LastUpdateTimestampPayload {
timestamp: LongString!
}
type ListPreference {
currentValue: String
default: String
entries: [String!]!
entryValues: [String!]!
key: String!
summary: String
title: String
visible: Boolean!
}
input LoginTrackerCredentialsInput {
clientMutationId: String
password: String!
trackerId: Int!
username: String!
}
type LoginTrackerCredentialsPayload {
clientMutationId: String
isLoggedIn: Boolean!
tracker: TrackerType!
}
input LoginTrackerOAuthInput {
callbackUrl: String!
clientMutationId: String
trackerId: Int!
}
type LoginTrackerOAuthPayload {
clientMutationId: String
isLoggedIn: Boolean!
tracker: TrackerType!
}
input LogoutTrackerInput {
clientMutationId: String
trackerId: Int!
}
type LogoutTrackerPayload {
clientMutationId: String
isLoggedIn: Boolean!
tracker: TrackerType!
}
input LongFilterInput {
distinctFrom: LongString
distinctFromAll: [LongString!]
distinctFromAny: [LongString!]
equalTo: LongString
greaterThan: LongString
greaterThanOrEqualTo: LongString
in: [LongString!]
isNull: Boolean
lessThan: LongString
lessThanOrEqualTo: LongString
notDistinctFrom: LongString
notEqualTo: LongString
notEqualToAll: [LongString!]
notEqualToAny: [LongString!]
notIn: [LongString!]
}
"""A 64-bit signed integer as a String"""
scalar LongString
input MangaConditionInput {
artist: String
author: String
categoryIds: [Int!]
chaptersLastFetchedAt: LongString
description: String
genre: [String!]
id: Int
inLibrary: Boolean
inLibraryAt: LongString
initialized: Boolean
lastFetchedAt: LongString
realUrl: String
sourceId: LongString
status: MangaStatus
thumbnailUrl: String
title: String
url: String
}
type MangaEdge implements Edge {
cursor: Cursor!
node: MangaType!
}
input MangaFilterInput {
and: [MangaFilterInput!]
artist: StringFilterInput
author: StringFilterInput
categoryId: IntFilterInput
chaptersLastFetchedAt: LongFilterInput
description: StringFilterInput
genre: StringFilterInput
id: IntFilterInput
inLibrary: BooleanFilterInput
inLibraryAt: LongFilterInput
initialized: BooleanFilterInput
lastFetchedAt: LongFilterInput
not: MangaFilterInput
or: [MangaFilterInput!]
realUrl: StringFilterInput
sourceId: LongFilterInput
status: MangaStatusFilterInput
thumbnailUrl: StringFilterInput
title: StringFilterInput
url: StringFilterInput
}
type MangaMetaType implements MetaType {
key: String!
mangaId: Int!
value: String!
manga: MangaType!
}
input MangaMetaTypeInput {
key: String!
mangaId: Int!
value: String!
}
type MangaNodeList implements NodeList {
edges: [MangaEdge!]!
nodes: [MangaType!]!
pageInfo: PageInfo!
totalCount: Int!
}
enum MangaOrderBy {
ID
TITLE
IN_LIBRARY_AT
LAST_FETCHED_AT
}
input MangaOrderInput {
by: MangaOrderBy!
byType: SortOrder
}
enum MangaStatus {
UNKNOWN
ONGOING
COMPLETED
LICENSED
PUBLISHING_FINISHED
CANCELLED
ON_HIATUS
}
input MangaStatusFilterInput {
distinctFrom: MangaStatus
distinctFromAll: [MangaStatus!]
distinctFromAny: [MangaStatus!]
equalTo: MangaStatus
greaterThan: MangaStatus
greaterThanOrEqualTo: MangaStatus
in: [MangaStatus!]
isNull: Boolean
lessThan: MangaStatus
lessThanOrEqualTo: MangaStatus
notDistinctFrom: MangaStatus
notEqualTo: MangaStatus
notEqualToAll: [MangaStatus!]
notEqualToAny: [MangaStatus!]
notIn: [MangaStatus!]
}
type MangaType {
artist: String
author: String
chaptersLastFetchedAt: LongString
description: String
genre: [String!]!
id: Int!
inLibrary: Boolean!
inLibraryAt: LongString!
initialized: Boolean!
lastFetchedAt: LongString
realUrl: String
sourceId: LongString!
status: MangaStatus!
thumbnailUrl: String
thumbnailUrlLastFetched: LongString
title: String!
updateStrategy: UpdateStrategy!
url: String!
age: LongString
bookmarkCount: Int!
categories: CategoryNodeList!
chapters: ChapterNodeList!
chaptersAge: LongString
downloadCount: Int!
firstUnreadChapter: ChapterType
hasDuplicateChapters: Boolean!
lastReadChapter: ChapterType
latestFetchedChapter: ChapterType
latestReadChapter: ChapterType
latestUploadedChapter: ChapterType
meta: [MangaMetaType!]!
source: SourceType
trackRecords: TrackRecordNodeList!
unreadCount: Int!
}