-
Notifications
You must be signed in to change notification settings - Fork 3
/
schema.graphql
6217 lines (5204 loc) · 152 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
# ------------------------------------------------------
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------
type Aggregate {
count: Int!
}
type Attachment implements Node {
"""Whether the current viewer may delete the file."""
canDelete: Boolean
filename: String!
"""In bytes"""
filesize: String!
id: ID!
mimeType: String!
recording: Recording!
updatedAt: DateTime
url(
"""Requires `Recording` read access."""
skipAnalytics: Boolean
): URL!
}
type AudioFile implements Node {
"""Bitrate of the audio file in kbps."""
bitrate: Int!
"""Whether the current viewer may delete the file."""
canDelete: Boolean
"""The duration of the audio file in seconds."""
duration: Float!
filename: String!
"""In bytes"""
filesize: String!
id: ID!
mimeType: String!
recording: Recording!
transcodingStatus: MediaFileTranscodingStatus!
updatedAt: DateTime
url(
requestType: MediaFileRequestType = DOWNLOAD
"""Requires `Recording` read access."""
skipAnalytics: Boolean
): URL!
}
type AuthenticatedUser {
sessionToken: String!
user: User!
}
type AuthenticatedUserPayload {
authenticatedUser: AuthenticatedUser
errors: [InputValidationError!]!
}
type Bible implements Node {
abbreviation: String!
book(id: ID!): BibleBook!
books: [BibleBook!]!
copyrightText: String!
id: ID!
isDramatized: Boolean!
sponsor: BibleSponsor!
title: String!
}
type BibleBook implements Node {
bible: Bible!
chapter(id: ID!): BibleChapter!
chapterCount: Int!
chapters: [BibleChapter!]!
id: ID!
isDramatized: Boolean!
"""A shareable short URL to this resource."""
shareUrl: String!
title: String!
}
type BibleChapter implements Node {
book: BibleBook!
id: ID!
text: String!
title: String!
url: URL!
verseCount: Int!
verses: [BibleVerse!]!
}
type BibleConnection {
aggregate: Aggregate
edges: [BibleEdge!]
nodes: [Bible!]
pageInfo: PageInfo!
}
type BibleEdge {
cursor: String!
node: Bible!
}
type BibleReference {
book: BibleReferenceBook!
chapter: Int
verse: Int
}
enum BibleReferenceBook {
ACTS
AMOS
COLOSSIANS
DANIEL
DEUTERONOMY
ECCLESIASTES
EPHESIANS
ESTHER
EXODUS
EZEKIEL
EZRA
FIRST_CHRONICLES
FIRST_CORINTHIANS
FIRST_JOHN
FIRST_KINGS
FIRST_PETER
FIRST_SAMUEL
FIRST_THESSALONIANS
FIRST_TIMOTHY
GALATIANS
GENESIS
HABAKKUK
HAGGAI
HEBREWS
HOSEA
ISAIAH
JAMES
JEREMIAH
JOB
JOEL
JOHN
JONAH
JOSHUA
JUDE
JUDGES
LAMENTATIONS
LEVITICUS
LUKE
MALACHI
MARK
MATTHEW
MICAH
NAHUM
NEHEMIAH
NUMBERS
OBADIAH
PHILEMON
PHILIPPIANS
PROVERBS
PSALMS
REVELATION
ROMANS
RUTH
SECOND_CHRONICLES
SECOND_CORINTHIANS
SECOND_JOHN
SECOND_KINGS
SECOND_PETER
SECOND_SAMUEL
SECOND_THESSALONIANS
SECOND_TIMOTHY
SONG_OF_SOLOMON
THIRD_JOHN
TITUS
ZECHARIAH
ZEPHANIAH
}
"""A Bible reference."""
input BibleReferenceInput {
book: BibleReferenceBook!
chapter: Int
verse: Int
}
"""The Bible reference range applicable to an item."""
type BibleReferenceRange implements Node {
"""The end reference."""
endReference: BibleReference!
id: ID!
"""The start reference."""
startReference: BibleReference!
}
type BibleReferenceRangeConnection {
aggregate: Aggregate
edges: [BibleReferenceRangeEdge!]
nodes: [BibleReferenceRange!]
pageInfo: PageInfo!
}
type BibleReferenceRangeEdge {
cursor: String!
node: BibleReferenceRange!
}
"""The Bible reference range the items must fall in to be applicable."""
input BibleReferenceRangeInput {
"""The end reference."""
endReference: BibleReferenceInput
"""The start reference."""
startReference: BibleReferenceInput!
}
type BibleSponsor {
name: String!
url: URL!
}
type BibleVerse {
number: Int!
text: String!
}
type BlogPost implements Node & UniformResourceLocatable {
body: String!
"""The canonical HTML path to this resource."""
canonicalPath(useFuturePath: Boolean = false): String!
"""The canonical URL to this resource."""
canonicalUrl(useFuturePath: Boolean = false): URL!
"""The number of days to feature blog post."""
featuredDuration: Int
id: ID!
image: Image
isHidden: Boolean!
language: Language!
publishDate: DateTime!
"""The estimated number of seconds to read the blog post."""
readingDuration: Float
"""A shareable short URL to this resource."""
shareUrl: URL!
teaser: String!
title: String!
}
type BlogPostConnection {
aggregate: Aggregate
edges: [BlogPostEdge!]
nodes: [BlogPost!]
pageInfo: PageInfo!
}
input BlogPostCreateInput {
body: String!
"""The number of days to feature blog post."""
featuredDuration: Int
image: ImageInput
isHidden: Boolean
language: Language!
publishDate: DateTime
teaser: String
title: String!
}
type BlogPostEdge {
cursor: String!
node: BlogPost!
}
input BlogPostOrder {
direction: OrderByDirection!
field: BlogPostSortableField!
}
type BlogPostPayload {
blogPost: BlogPost
errors: [InputValidationError!]!
}
"""Properties by which blog post connections can be ordered."""
enum BlogPostSortableField {
PUBLISHED_AT
}
input BlogPostUpdateInput {
body: String
"""The number of days to feature blog post."""
featuredDuration: Int
image: ImageInput
isHidden: Boolean
publishDate: DateTime
teaser: String
title: String
}
"""The types of catalog entities."""
enum CatalogEntityType {
COLLECTION
DISTRIBUTION_AGREEMENT
LICENSE
PERSON
RECORDING
SEQUENCE
SPONSOR
}
type CatalogHistoryComment {
isSticky: Boolean!
mentions: [User!]!
"""Includes mentions in the format of @user:[id] (e.g., `@user:123`)."""
message: String!
}
input CatalogHistoryCommentCreateInput {
isSticky: Boolean
"""Can include mentions in the format of @user:[id] (e.g., `@user:123`)."""
message: String!
}
input CatalogHistoryCommentUpdateInput {
isSticky: Boolean
"""Can include mentions in the format of @user:[id] (e.g., `@user:123`)."""
message: String!
}
union CatalogHistoryEntityUnion = Collection | DistributionAgreement | License | MediaRelease | Person | Recording | Sequence | Sponsor
type CatalogHistoryItem implements Node {
comment: CatalogHistoryComment
createdAt: DateTime!
entity: CatalogHistoryEntityUnion
id: ID!
performer: User
type: CatalogHistoryItemType!
}
type CatalogHistoryItemConnection {
aggregate: Aggregate
edges: [CatalogHistoryItemEdge!]
nodes: [CatalogHistoryItem!]
pageInfo: PageInfo!
}
type CatalogHistoryItemEdge {
cursor: String!
node: CatalogHistoryItem!
}
input CatalogHistoryItemOrder {
direction: OrderByDirection!
field: CatalogHistoryItemSortableField!
}
type CatalogHistoryItemPayload {
catalogHistoryItem: CatalogHistoryItem
errors: [InputValidationError!]!
}
"""Properties by which history item connections can be ordered."""
enum CatalogHistoryItemSortableField {
CREATED_AT
}
"""The supported types of catalog history items."""
enum CatalogHistoryItemType {
ARCHIVE
CHECKOUT_CONTENT
CHECKOUT_LEGAL
CHECKOUT_TECHNICAL
CREATED
DELETED
ENCODING_ERROR
FILE_UPLOADED
HIDDEN
INTERNAL_COMMENT
MEDIA_RELEASE_SUBMIT
RECORDING_SCREENING_CLEARED
SCREENING_CONTENT_AVAILABLE
SCREENING_CONTENT_FLAG
SCREENING_LEGAL_AVAILABLE
SCREENING_LEGAL_FLAG
SCREENING_TECHNICAL_AVAILABLE
SCREENING_TECHNICAL_FLAG
SYSTEM_ERROR
UNARCHIVE
UPDATED
}
"""The supported view filter of catalog history items."""
enum CatalogHistoryItemViewFilter {
COMMENTS
LOGS
MENTIONS
STICKIES
}
type Collection implements Node & UniformResourceLocatable {
"""The canonical HTML path to this resource."""
canonicalPath(useFuturePath: Boolean = false): String!
"""The canonical URL to this resource."""
canonicalUrl(useFuturePath: Boolean = false): URL!
contentType: CollectionContentType!
description: String!
"""The combined duration of the collection's recordings in seconds."""
duration: Float!
endDate: Date
hidingReason: String
history(
"""Return the elements that come after the specified cursor."""
after: String
"""The date of the history item must fall within the provided date range."""
dateRange: DateRangeInput
"""Return up to the first `n` elements from the list."""
first: Int
isSticky: Boolean
"""Limit history items to those that have not been marked read."""
isUnread: Boolean
"""Return the elements that come after the specified offset."""
offset: Int
orderBy: [CatalogHistoryItemOrder!]
viewFilters: [CatalogHistoryItemViewFilter!]
): CatalogHistoryItemConnection
id: ID!
image: Image
imageWithFallback: Image!
isHidden: Boolean
language: Language!
location: String
logoImage: Image @deprecated(reason: "Collection.logoImage is replaced with Collection.image")
logoImageWithFallback: Image! @deprecated(reason: "Collection.logoImageWithFallback is replaced with Collection.imageWithFallback")
mediaReleaseForm: MediaReleaseForm
persons(
"""Return the elements that come after the specified cursor."""
after: String
"""Return up to the first `n` elements from the list."""
first: Int
"""Whether to include unpublished persons. Requires `EDITOR` role."""
includeUnpublished: Boolean
"""Return the elements that come after the specified offset."""
offset: Int
orderBy: [PersonsOrder!]
role: PersonsRoleField
search: String
sequenceId: ID
startsWith: String
): PersonConnection!
recordings(
"""Return the elements that come after the specified cursor."""
after: String
bibleReferences: [BibleReferenceRangeInput!]
collectionIds: [ID!]
contentScreeningStatus: RecordingContentScreeningStatus
distributionAgreementId: ID
"""The duration of the recording must fall within the range in seconds."""
duration: IntegerRangeInput
"""Return up to the first `n` elements from the list."""
first: Int
"""Limit recordings to those with video media files."""
hasVideo: Boolean
"""Whether to include unpublished recordings. Requires `EDITOR` role."""
includeUnpublished: Boolean
isFeatured: Boolean
legalScreeningStatus: RecordingLegalScreeningStatus
"""Return the elements that come after the specified offset."""
offset: Int
"""
Only include archived recordings. Implies `includeUnpublished: true`. Requires `ADMINISTRATION` role.
"""
onlyArchived: Boolean
orderBy: [RecordingsOrder!]
"""A person associated with the recordings."""
person: RecordingPersonInput
"""The recording must be associated with one of the persons provided."""
persons: [RecordingPersonInput!]
"""Deprecated: presenterId is replaced with person."""
presenterId: ID
"""
The publish date of the recording must fall within one of the sets of date ranges.
"""
publishDates: [DateRangeInput!]
"""
The date of the recording must fall within one of the sets of date ranges.
"""
recordingDates: [DateRangeInput!]
"""Requires `CONTENT_SCREENER` role."""
screeningContentViewFilter: RecordingScreeningContentViewFilter
search: String
sequenceId: ID
sequenceIds: [ID!]
sponsorId: ID
sponsorIds: [ID!]
"""Implies includeUnpublished. Requires `EDITOR` role."""
stage: RecordingStage
"""The name of the tag to filter the recordings by."""
tagName: String
technicalScreeningStatus: RecordingTechnicalScreeningStatus
"""
The last updated date of the recording must fall within one of the sets of date ranges.
"""
updatedDates: [DateRangeInput!]
viewerHasFavorited: Boolean
viewerPlaybackSessionStatus: RecordingPlaybackSessionStatus
websiteIds: [ID!]
): RecordingConnection!
sequences(
"""Return the elements that come after the specified cursor."""
after: String
collectionIds: [ID!]
"""The sequence must not be associated with any of the persons provided."""
excludePersons: [RecordingPersonInput!]
"""Return up to the first `n` elements from the list."""
first: Int
"""Whether to include unpublished sequences. Requires `EDITOR` role."""
includeUnpublished: Boolean
"""Return the elements that come after the specified offset."""
offset: Int
orderBy: [SequenceOrder!]
"""The sequence must be associated with one of the persons provided."""
persons: [RecordingPersonInput!]
search: String
sponsorId: ID
sponsorIds: [ID!]
): SequenceConnection!
"""A shareable short URL to this resource."""
shareUrl: URL!
"""Requires `ADMINISTRATION` role."""
skipContentScreening: Boolean
"""Requires `ADMINISTRATION` role."""
skipLegalScreening: Boolean
sponsor: Sponsor
startDate: Date
summary: String!
title: String!
viewerHasFavorited: Boolean!
"""
The percentage of the associated recordings the viewer has finished playing.
"""
viewerPlaybackCompletedPercentage: Float!
}
type CollectionConnection {
aggregate: Aggregate
edges: [CollectionEdge!]
nodes: [Collection!]
pageInfo: PageInfo!
}
"""The available types of collections."""
enum CollectionContentType {
AUDIOBOOK_SERIES
BIBLE_VERSION
CONFERENCE
MUSIC_SERIES
STORY_PROGRAM
}
input CollectionCreateInput {
contentType: CollectionContentType!
description: String
hidingReason: String
image: ImageInput
isHidden: Boolean
location: String
"""Requires `ADMINISTRATION` role."""
skipContentScreening: Boolean
"""Requires `ADMINISTRATION` role."""
skipLegalScreening: Boolean
sponsorId: ID!
summary: String
title: String!
}
type CollectionEdge {
cursor: String!
node: Collection!
}
type CollectionPayload {
collection: Collection
errors: [InputValidationError!]!
}
input CollectionUpdateInput {
description: String
hidingReason: String
image: ImageInput
isHidden: Boolean
location: String
"""Requires `ADMINISTRATION` role."""
skipContentScreening: Boolean
"""Requires `ADMINISTRATION` role."""
skipLegalScreening: Boolean
sponsorId: ID
summary: String
title: String
}
input CollectionsOrder {
direction: OrderByDirection!
field: CollectionsSortableField!
}
"""Properties by which collection connections can be ordered."""
enum CollectionsSortableField {
CREATED_AT
ID
RECORDING_COUNT
RECORDING_PUBLISHED_AT
TITLE
}
"""A date value string in YYYY-MM-DD format. Example value: "2020-10-05"."""
scalar Date
"""The date range the items must fall in to be applicable."""
input DateRangeInput {
"""The lower bound of the date range."""
greaterThan: Date
"""The lower or equal bound of the date range."""
greaterThanOrEqualTo: Date
"""The upper bound of the date range."""
lessThan: Date
"""The upper or equal bound of the date range."""
lessThanOrEqualTo: Date
}
"""
A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
"""
scalar DateTime
type DistributionAgreement implements Node {
history(
"""Return the elements that come after the specified cursor."""
after: String
"""The date of the history item must fall within the provided date range."""
dateRange: DateRangeInput
"""Return up to the first `n` elements from the list."""
first: Int
isSticky: Boolean
"""Limit history items to those that have not been marked read."""
isUnread: Boolean
"""Return the elements that come after the specified offset."""
offset: Int
orderBy: [CatalogHistoryItemOrder!]
viewFilters: [CatalogHistoryItemViewFilter!]
): CatalogHistoryItemConnection
id: ID!
isDefault: Boolean!
isHidden: Boolean
isRetired: Boolean!
license: License
recordings(
"""Return the elements that come after the specified cursor."""
after: String
bibleReferences: [BibleReferenceRangeInput!]
collectionId: ID
collectionIds: [ID!]
contentScreeningStatus: RecordingContentScreeningStatus
"""The duration of the recording must fall within the range in seconds."""
duration: IntegerRangeInput
"""Return up to the first `n` elements from the list."""
first: Int
"""Limit recordings to those with video media files."""
hasVideo: Boolean
"""Whether to include unpublished recordings. Requires `EDITOR` role."""
includeUnpublished: Boolean
isFeatured: Boolean
legalScreeningStatus: RecordingLegalScreeningStatus
"""Return the elements that come after the specified offset."""
offset: Int
"""
Only include archived recordings. Implies `includeUnpublished: true`. Requires `ADMINISTRATION` role.
"""
onlyArchived: Boolean
orderBy: [RecordingsOrder!]
"""A person associated with the recordings."""
person: RecordingPersonInput
"""The recording must be associated with one of the persons provided."""
persons: [RecordingPersonInput!]
"""Deprecated: presenterId is replaced with person."""
presenterId: ID
"""
The publish date of the recording must fall within one of the sets of date ranges.
"""
publishDates: [DateRangeInput!]
"""
The date of the recording must fall within one of the sets of date ranges.
"""
recordingDates: [DateRangeInput!]
"""Requires `CONTENT_SCREENER` role."""
screeningContentViewFilter: RecordingScreeningContentViewFilter
search: String
sequenceId: ID
sequenceIds: [ID!]
sponsorId: ID
sponsorIds: [ID!]
"""Implies includeUnpublished. Requires `EDITOR` role."""
stage: RecordingStage
"""The name of the tag to filter the recordings by."""
tagName: String
technicalScreeningStatus: RecordingTechnicalScreeningStatus
"""
The last updated date of the recording must fall within one of the sets of date ranges.
"""
updatedDates: [DateRangeInput!]
viewerHasFavorited: Boolean
viewerPlaybackSessionStatus: RecordingPlaybackSessionStatus
websiteIds: [ID!]
): RecordingConnection!
sponsor: Sponsor
summary: String!
title: String!
}
type DistributionAgreementConnection {
aggregate: Aggregate
edges: [DistributionAgreementEdge!]
nodes: [DistributionAgreement!]
pageInfo: PageInfo!
}
input DistributionAgreementCreateInput {
isDefault: Boolean
isHidden: Boolean
isRetired: Boolean
licenseId: ID!
sponsorId: ID!
summary: String
title: String!
}
type DistributionAgreementEdge {
cursor: String!
node: DistributionAgreement!
}
type DistributionAgreementPayload {
distributionAgreement: DistributionAgreement
errors: [InputValidationError!]!
}
input DistributionAgreementUpdateInput {
isDefault: Boolean
isHidden: Boolean
isRetired: Boolean
licenseId: ID
sponsorId: ID
summary: String
title: String
}
input DistributionAgreementsOrder {
direction: OrderByDirection!
field: DistributionAgreementsSortableField!
}
"""Properties by which distribution agreement connections can be ordered."""
enum DistributionAgreementsSortableField {
CREATED_AT
ID
TITLE
}
type Faq implements Node {
body: String!
faqCategory: FaqCategory!
id: ID!
"""The index of the FAQ within its category."""
index: Int!
isHidden: Boolean!
publishDate: DateTime!
title: String!
}
type FaqCategory implements Node {
id: ID!
"""The index of the category within all categories."""
index: Int!
title: String!
}
type FaqCategoryConnection {
aggregate: Aggregate
edges: [FaqCategoryEdge!]
nodes: [FaqCategory!]
pageInfo: PageInfo!
}
type FaqCategoryEdge {
cursor: String!
node: FaqCategory!
}
type FaqConnection {
aggregate: Aggregate
edges: [FaqEdge!]
nodes: [Faq!]
pageInfo: PageInfo!
}
input FaqCreateInput {
body: String!
faqCategoryId: ID!
"""The index of the FAQ within its category."""
index: Int!
isHidden: Boolean
language: Language!
publishDate: DateTime
title: String!
}
type FaqEdge {
cursor: String!
node: Faq!
}
type FaqPayload {
errors: [InputValidationError!]!
faq: Faq
}
input FaqUpdateInput {
body: String
faqCategoryId: ID
"""The index of the FAQ within its category."""
index: Int
isHidden: Boolean
publishDate: DateTime
title: String
}
input FaqsOrder {
direction: OrderByDirection!
field: FaqsSortableField!
}
"""Properties by which FAQ connections can be ordered."""
enum FaqsSortableField {
CREATED_AT
INDEX
TITLE
}
"""The types of catalog entities that may be favorited."""
enum FavoritableCatalogEntityType {
COLLECTION
PERSON
RECORDING
SEQUENCE
SPONSOR
}
union FavoriteEntityUnion = Collection | Person | Recording | Sequence | Sponsor
input FavoritesOrder {
direction: OrderByDirection!
field: FavoritesSortableField!
}
"""Properties by which user favorites connections can be ordered."""
enum FavoritesSortableField {
ENTITY_TITLE
FAVORITED_AT
}
type Image implements Node {
id: ID!
name: String!
updatedAt: DateTime
url(
cropMode: ImageCropMode! = DEFAULT
size: Int!
"""Enable to avoid cached image URLs."""
skipCache: Boolean
): URL!
}
"""
The underlying API doesn't support offset-based pagination or count requests. As a result this connection doesn't include `pageInfo` or `aggregate` fields.
"""
type ImageConnectionSlim {
edges: [ImageEdge!]
}
"""The available image type containers."""
enum ImageContainer {
AVATAR
COLLECTION
LICENSE
NEWS
PERSON
SEQUENCE
SITE
SPONSOR
}
"""Aavailable crop modes for images."""
enum ImageCropMode {
"""
Resizes the image to the requested size and in the process crops parts from the original image.
"""
DEFAULT
"""
Scales the whole image content (no cropping) at the original aspect ratio to fit within the output size.
"""
MAX_SIZE
}
type ImageEdge {
cursor: String!
node: Image!
}
input ImageInput {
name: String!
}
type ImagePayload {
errors: [InputValidationError!]!