This repository was archived by the owner on Feb 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
992 lines (863 loc) · 21.5 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
directive @cacheControl(maxAge: Int, scope: CacheControlScope) on FIELD_DEFINITION | OBJECT | INTERFACE
enum ACTION_FEATURE_ACTION {
READ_CONTENT
READ_EVENT
OPEN_URL
OPEN_URL_EXTERNALLY
OPEN_AUTHENTICATED_URL
OPEN_AUTHENTICATED_URL_EXTERNALLY
OPEN_NODE
OPEN_CHANNEL
COMPLETE_NODE
}
type ActionBarAction {
id: ID!
icon: String
title: String
action: ACTION_FEATURE_ACTION
relatedNode: Node
}
type ActionBarFeature implements Feature & Node {
id: ID!
order: Int
title: String
actions: [ActionBarAction]
}
type ActionListAction {
id: ID!
title: String
subtitle: String
image: ImageMedia
relatedNode: Node
action: ACTION_FEATURE_ACTION
}
type ActionListFeature implements Feature & Node {
id: ID!
order: Int
title: String
subtitle: String
actions: [ActionListAction]
primaryAction: FeatureAction
}
type ActionTableAction {
id: ID!
icon: String
title: String
subtitle: String
action: ACTION_FEATURE_ACTION
relatedNode: Node
}
type ActionTableFeature implements Feature & Node {
id: ID!
order: Int
title: String
actions: [ActionTableAction]
}
type AddCommentFeature implements Feature & Node {
id: ID!
order: Int
relatedNode: Node!
addPrompt: String
initialPrompt: String
}
input AnalyticsDeviceInfo {
platform: AnalyticsPlatform
deviceId: String
deviceModel: String
osVersion: String
appVersion: String
}
input AnalyticsIdentifyInput {
traits: [AnalyticsMetaField]
anonymousId: String!
deviceInfo: AnalyticsDeviceInfo
}
input AnalyticsMetaField {
field: String!
value: AnalyticsValue
}
enum AnalyticsPlatform {
iOS
Android
}
type AnalyticsResult {
success: Boolean
}
input AnalyticsTrackInput {
eventName: String!
properties: [AnalyticsMetaField]
anonymousId: String
deviceInfo: AnalyticsDeviceInfo
}
scalar AnalyticsValue
type AppTab {
title: String
icon: String
feed: FeatureFeed
}
type AudioMedia implements Media {
name: String
key: String
sources: [AudioMediaSource]
}
type AudioMediaSource implements MediaSource {
uri: String
}
interface AudioNode {
audios: [AudioMedia]
}
type AuthenticatedUser {
id: ID!
profile: Person
rock: RockPersonDetails
rockToken: String @deprecated(reason: "Use rock.authCookie instead")
}
type Authentication {
user: AuthenticatedUser
token: String
}
type ButtonFeature implements Feature & Node {
id: ID!
order: Int
action: FeatureAction
}
enum CacheControlScope {
PUBLIC
PRIVATE
}
type Campus implements Node {
id: ID!
name: String
street1: String
street2: String
city: String
state: String
postalCode: String
latitude: Float
longitude: Float
image: ImageMediaSource
distanceFromLocation(location: CampusLocationInput): Float
events: [Event]
}
input CampusLocationInput {
latitude: Float
longitude: Float
}
interface Card {
title(hyphenated: Boolean): String
coverImage: ImageMedia
summary: String
}
type CardListItem {
id: ID!
hasAction: Boolean
actionIcon: String
labelText: String
summary: String
coverImage: ImageMedia
title(hyphenated: Boolean): String
relatedNode: Node
action: ACTION_FEATURE_ACTION
}
"""A rgb color string"""
scalar Color
type Comment implements Node & LikableNode {
id: ID!
person: Person
text: String
visibility: CommentVisibility
isLiked: Boolean
likedCount: Int
}
type CommentListFeature implements Feature & Node {
id: ID!
order: Int
comments: [Comment]
}
enum CommentVisibility {
PUBLIC
PRIVATE
FOLLOWERS
}
type ContentChannel implements Node {
id: ID!
name: String
description: String
childContentChannels: [ContentChannel]
childContentItemsConnection(first: Int, after: String, orderBy: ContentItemsConnectionOrderInput): ContentItemsConnection
iconName: String
}
interface ContentChildNode {
parentChannel: ContentChannel
siblingContentItemsConnection(first: Int, after: String): ContentItemsConnection
}
interface ContentItem {
id: ID!
title(hyphenated: Boolean): String
publishDate: String
coverImage: ImageMedia
images: [ImageMedia]
videos: [VideoMedia]
audios: [AudioMedia]
htmlContent: String
summary: String
childContentItemsConnection(first: Int, after: String, orderBy: ContentItemsConnectionOrderInput): ContentItemsConnection
siblingContentItemsConnection(first: Int, after: String, orderBy: ContentItemsConnectionOrderInput): ContentItemsConnection
parentChannel: ContentChannel
theme: Theme
isLiked: Boolean
likedCount: Int
sharing: SharableContentItem
}
type ContentItemsConnection {
edges: [ContentItemsConnectionEdge]
totalCount: Int
pageInfo: PaginationInfo
}
type ContentItemsConnectionEdge {
node: ContentItem
cursor: String
}
input ContentItemsConnectionInput {
first: Int
after: String
orderBy: ContentItemsConnectionOrderInput
}
input ContentItemsConnectionOrderInput {
field: OrderField
direction: OrderDirection
}
interface ContentNode {
title(hyphenated: Boolean): String
coverImage: ImageMedia
htmlContent: String
}
interface ContentParentNode {
childContentItemsConnection(first: Int, after: String): ContentItemsConnection
}
type ContentSeriesContentItem implements ContentItem & Node & ContentNode & Card & VideoNode & AudioNode & ContentChildNode & ContentParentNode & ThemedNode & ProgressNode & LikableNode & ShareableNode & FeaturesNode {
id: ID!
title(hyphenated: Boolean): String
publishDate: String
coverImage: ImageMedia
images: [ImageMedia]
videos: [VideoMedia]
audios: [AudioMedia]
htmlContent: String
summary: String
childContentItemsConnection(first: Int, after: String, orderBy: ContentItemsConnectionOrderInput): ContentItemsConnection
siblingContentItemsConnection(first: Int, after: String, orderBy: ContentItemsConnectionOrderInput): ContentItemsConnection
parentChannel: ContentChannel
theme: Theme
percentComplete: Float
upNext: ContentItem
scriptures: [Scripture]
isLiked: Boolean
likedCount: Int
sharing: SharableContentItem
features: [Feature] @deprecated(reason: "Use featureFeed")
featureFeed: FeatureFeed
}
type Device implements Node {
id: ID!
pushId: String!
notificationsEnabled: Boolean!
}
type DevotionalContentItem implements ContentItem & Node & ContentNode & Card & VideoNode & AudioNode & ContentChildNode & ContentParentNode & ThemedNode & ScriptureNode & LikableNode & ShareableNode & FeaturesNode {
id: ID!
title(hyphenated: Boolean): String
publishDate: String
coverImage: ImageMedia
images: [ImageMedia]
videos: [VideoMedia]
audios: [AudioMedia]
htmlContent: String
summary: String
childContentItemsConnection(first: Int, after: String, orderBy: ContentItemsConnectionOrderInput): ContentItemsConnection
siblingContentItemsConnection(first: Int, after: String, orderBy: ContentItemsConnectionOrderInput): ContentItemsConnection
parentChannel: ContentChannel
theme: Theme
scriptures: [Scripture]
isLiked: Boolean
likedCount: Int
seriesConnection: SeriesConnection
sharing: SharableContentItem
features: [Feature] @deprecated(reason: "Use featureFeed")
featureFeed: FeatureFeed
}
type Event implements Node & ContentNode {
id: ID!
title(hyphenated: Boolean): String
htmlContent: String
coverImage: ImageMedia
location: String
start: String
end: String
name: String @deprecated(reason: "Use title")
description: String @deprecated(reason: "Use htmlContent")
image: ImageMedia @deprecated(reason: "Use coverImage")
}
interface Feature {
id: ID!
order: Int
}
type FeatureAction {
relatedNode: Node
action: ACTION_FEATURE_ACTION
title: String
}
type FeatureFeed implements Node {
id: ID!
features: [Feature]
}
interface FeaturesNode {
features: [Feature] @deprecated(reason: "Use featureFeed")
featureFeed: FeatureFeed
}
type Follow {
id: ID
state: FollowState
}
enum FollowState {
REQUESTED
DECLINED
ACCEPTED
}
enum GENDER {
Male
Female
Unknown
}
type Group implements Node {
id: ID!
name: String
leaders: [Person]
members: [Person]
}
enum GROUP_TYPE {
Serving
Community
Family
Fuse
Rally
Mentoring
}
type HeroListFeature implements Feature & Node {
id: ID!
order: Int
title: String
subtitle: String
actions: [ActionListAction]
heroCard: CardListItem
primaryAction: FeatureAction
}
type HorizontalCardListFeature implements Feature & Node {
id: ID!
order: Int
title: String
subtitle: String
cards: [CardListItem]
primaryAction: FeatureAction
}
type ImageMedia implements Media {
name: String
key: String
sources: [ImageMediaSource]
}
type ImageMediaSource implements MediaSource {
uri: String
}
type Interaction implements Node {
id: ID!
action: InteractionAction
node: Node
}
enum InteractionAction {
VIEW
COMPLETE
SERIES_START
}
input InteractionDataField {
field: String!
value: InteractionValue
}
type InteractionResult {
success: Boolean
node: Node
}
scalar InteractionValue
interface LikableNode {
isLiked: Boolean
likedCount: Int
}
enum LIKE_OPERATION {
Like
Unlike
}
input LikeEntityInput {
nodeId: ID!
operation: LIKE_OPERATION!
}
interface LiveNode {
liveStream: LiveStream
}
type LiveStream {
isLive: Boolean
eventStartTime: String
media: VideoMedia
webViewUrl: String
contentItem: ContentItem
}
interface Media {
name: String
key: String
sources: [MediaSource]
}
type MediaContentItem implements ContentItem & Node & ContentNode & Card & VideoNode & AudioNode & ContentChildNode & ContentParentNode & ThemedNode & ScriptureNode & LikableNode & ShareableNode & FeaturesNode {
id: ID!
title(hyphenated: Boolean): String
publishDate: String
coverImage: ImageMedia
images: [ImageMedia]
videos: [VideoMedia]
audios: [AudioMedia]
htmlContent: String
summary: String
childContentItemsConnection(first: Int, after: String, orderBy: ContentItemsConnectionOrderInput): ContentItemsConnection
siblingContentItemsConnection(first: Int, after: String, orderBy: ContentItemsConnectionOrderInput): ContentItemsConnection
parentChannel: ContentChannel
theme: Theme
scriptures: [Scripture]
isLiked: Boolean
likedCount: Int
sharing: SharableContentItem
features: [Feature] @deprecated(reason: "Use featureFeed")
featureFeed: FeatureFeed
}
enum MediaInputType {
IMAGE
VIDEO
AUDIO
}
interface MediaSource {
uri: String
}
type Message implements Node {
id: ID!
message: String
}
type Mutation {
_placeholder: Boolean
updateLikeEntity(input: LikeEntityInput!): ContentItem @deprecated(reason: "Use the more general updateLikeNode instead")
updateLikeNode(input: LikeEntityInput!): Node
saveNotesComment(contentID: ID!, blockID: ID!, text: String): NotesBlockComment
updateProfileField(input: UpdateProfileInput!): Person
updateProfileFields(input: [UpdateProfileInput]!): Person
uploadProfileImage(file: Upload!, size: Int!): Person
authenticate(identity: String!, password: String!): Authentication
changePassword(password: String!): Authentication
registerPerson(email: String!, password: String!, userProfile: [UpdateProfileInput]): Authentication
requestSmsLoginPin(phoneNumber: String!): SmsPinResult
authenticateWithSms(phoneNumber: String!, pin: String!): Authentication
registerWithSms(phoneNumber: String!, pin: String!, userProfile: [UpdateProfileInput]): Authentication
interactWithNode(action: InteractionAction!, nodeId: ID!, data: [InteractionDataField]): InteractionResult
identifySelf(input: AnalyticsIdentifyInput!): AnalyticsResult
trackEvent(input: AnalyticsTrackInput!): AnalyticsResult
updateUserPushSettings(input: PushSettingsInput!): Person
updateUserCampus(campusId: String!): Person
addComment(parentId: ID!, text: String!, visibility: CommentVisibility): Comment
updateComment(commentId: ID!, text: String, visibility: CommentVisibility): Comment
deleteComment(commentId: ID!): Boolean
flagComment(commentId: ID!): Comment
likeComment(commentId: ID!): Comment
unlikeComment(commentId: ID!): Comment
requestFollow(followedPersonId: ID!): Follow
ignoreFollowRequest(requestPersonId: ID!): Follow
acceptFollowRequest(requestPersonId: ID!): Follow
addPrayer(text: String!, isAnonymous: Boolean): Prayer
answerPrayer(id: ID!, answer: String!): Prayer
interactWithPrayer(id: ID!, action: PrayerAction!): Prayer
deletePrayer(nodeId: String!): Prayer @deprecated(reason: "Use interactWithPrayer(action:DELETE)")
incrementPrayerCount(nodeId: String!): Prayer @deprecated(reason: "Use interactWithPrayer(action:INCREMENT)")
flagPrayer(nodeId: String!): Prayer @deprecated(reason: "Use interactWithPrayer(action:FLAG)")
savePrayer(nodeId: String!): Prayer @deprecated(reason: "Use interactWithPrayer(action:SAVE)")
unSavePrayer(nodeId: String!): Prayer @deprecated(reason: "Use interactWithPrayer(action:UNSAVE)")
}
interface Node {
id: ID!
}
interface NotesBlock {
id: ID!
allowsComment: Boolean
comment: NotesBlockComment
simpleText: String
}
type NotesBlockComment {
id: ID!
text: String
}
type NotesScriptureBlock implements NotesBlock {
id: ID!
allowsComment: Boolean
comment: NotesBlockComment
simpleText: String
scripture: Scripture
}
type NotesTextBlock implements NotesBlock {
id: ID!
allowsComment: Boolean
comment: NotesBlockComment
simpleText: String
isHeader: Boolean
hasBlanks: Boolean
hiddenText: String
}
enum OrderDirection {
DESC
ASC
}
enum OrderField {
DATE
}
type PaginationInfo {
startCursor: String
endCursor: String
}
type Pass implements Node {
id: ID!
type: PassType
description: String
logo: ImageMediaSource
thumbnail: ImageMediaSource
barcode: ImageMediaSource
primaryFields: [PassField]
secondaryFields: [PassField]
backgroundColor: Color
foregroundColor: Color
labelColor: Color
logoText: String
passkitFileUrl: String
}
type PassField {
key: String!
label: String
value: String!
textAlignment: PassFieldTextAlignment
}
enum PassFieldTextAlignment {
LEFT
CENTER
RIGHT
NATURAL
}
enum PassType {
GENERIC
}
type Person implements Node {
id: ID!
firstName: String
lastName: String
nickName: String
email: String
gender: GENDER
birthDate: String
photo: ImageMediaSource
devices: [Device]
campus: Campus
groups(type: GROUP_TYPE, asLeader: Boolean): [Group]
testGroups: [Group]
isGroupLeader: Boolean
isInReadMyBible: Boolean
currentUserFollowing: Follow
followingCurrentUser: Follow
}
type Prayer implements Node {
id: ID!
text: String!
answer: String
startTime: String!
flagCount: Int
prayerCount: Int
campus: Campus @deprecated(reason: "Use requestor.campus")
requestor: Person
isAnonymous: Boolean
isSaved: Boolean
isPrayedFor: Boolean
}
enum PrayerAction {
DELETE
INCREMENT
FLAG
SAVE
UNSAVE
REMOVE_ANSWER
}
type PrayerMenuCategory implements Node {
id: ID!
key: String!
title: String!
subtitle: String
imageURL: String
}
type PrayersConnection {
edges: [PrayersConnectionEdge]
totalCount: Int
pageInfo: PaginationInfo
}
type PrayersConnectionEdge {
node: Prayer
cursor: String
}
enum PrayerType {
CAMPUS
USER
GROUP
SAVED
}
interface ProgressNode {
percentComplete: Float
upNext: ContentItem
}
input PushSettingsInput {
enabled: Boolean
pushProviderUserId: String
}
type Query {
_placeholder: Boolean
node(id: ID!): Node
likedContent(first: Int, after: String): ContentItemsConnection
contentChannels: [ContentChannel] @deprecated(reason: "No longer supported.")
contentItemTags: [String]
campaigns: ContentItemsConnection
userFeed(first: Int, after: String): ContentItemsConnection
personaFeed(first: Int, after: String): ContentItemsConnection
contentItemFromSlug(slug: String!): ContentItem
forgotPasswordURL: String
suggestedFollows: [Person]
searchPeople(name: String, first: Int, after: String): SearchPeopleResultsConnection
currentUser: AuthenticatedUser
userExists(identity: String): USER_AUTH_STATUS
liveStream: LiveStream @deprecated(reason: "Use liveStreams, there may be multiple.")
liveStreams: [LiveStream]
scripture(query: String!, version: VERSION): Scripture @deprecated(reason: "Use 'scriptures' instead.")
scriptures(query: String!, version: VERSION): [Scripture]
interactions(nodeId: ID, action: InteractionAction): [Interaction]
userPass: Pass
search(query: String!, first: Int, after: String): SearchResultsConnection
campuses(location: CampusLocationInput): [Campus]
tabs(campusId: ID, tags: [String]): [AppTab]
tabFeedFeatures(tab: Tab!, campusId: ID, tags: [String]): FeatureFeed @deprecated(reason: "Use tabs")
userFeedFeatures: [Feature] @deprecated(reason: "Use homeFeedFeatures or discoverFeedFeatures")
homeFeedFeatures(campusId: ID): FeatureFeed @deprecated(reason: "Use tabFeedFeatures(tab: HOME)")
discoverFeedFeatures: FeatureFeed @deprecated(reason: "Use tabFeedFeatures(tab: DISCOVER)")
readFeedFeatures: FeatureFeed
followRequests: [Person]
usersFollowing: [Person]
prayer(id: ID!): Prayer
prayers(type: PrayerType): [Prayer] @deprecated(reason: "Use paginated version: prayerFeed")
prayerFeed(first: Int, after: String, type: PrayerType): PrayersConnection
prayerMenuCategories: [PrayerMenuCategory]
}
type RockPersonDetails {
authToken: String
authCookie: String
}
type Scripture implements Node {
id: ID!
html: String
reference: String
book: String
copyright: String
version: String
}
type ScriptureFeature implements Feature & Node {
id: ID!
order: Int
title: String
scriptures: [Scripture]
sharing: SharableFeature
}
interface ScriptureNode {
scriptures: [Scripture]
}
type SearchPeopleResult {
node: Person
cursor: String
}
type SearchPeopleResultsConnection {
edges: [SearchPeopleResult]
pageInfo: PaginationInfo
}
type SearchResult {
cursor: String
title: String
summary: String
coverImage: ImageMedia
node: Node
}
type SearchResultsConnection {
edges: [SearchResult]
pageInfo: PaginationInfo
}
type SeriesConnection {
series: ContentItem
itemCount: Int
itemIndex(id: String): Int
}
interface Sharable {
message: String
title: String
url: String @deprecated(reason: "Not supported on the interface")
}
type SharableContentItem implements Sharable {
message: String
title: String
url: String
}
type SharableFeature implements Sharable {
message: String
title: String
url: String @deprecated(reason: "Not supported on a feature")
}
interface ShareableNode {
sharing: SharableContentItem
}
type SmsPinResult {
success: Boolean
userAuthStatus: USER_AUTH_STATUS
}
enum Tab {
HOME
READ
WATCH
PRAY
GIVE
CONNECT
}
type TextFeature implements Feature & Node {
id: ID!
order: Int
title: String
body: String
sharing: SharableFeature
}
type Theme {
type: ThemeType
colors: ThemeColors
}
type ThemeColors {
primary: Color
secondary: Color
screen: Color
paper: Color
alert: Color
}
interface ThemedNode {
theme: Theme
}
enum ThemeType {
LIGHT
DARK
}
type UniversalContentItem implements ContentItem & Node & ContentNode & Card & VideoNode & AudioNode & ContentChildNode & ContentParentNode & ThemedNode & LikableNode & ShareableNode & FeaturesNode {
id: ID!
title(hyphenated: Boolean): String
publishDate: String
coverImage: ImageMedia
images: [ImageMedia]
videos: [VideoMedia]
audios: [AudioMedia]
htmlContent: String
summary: String
childContentItemsConnection(first: Int, after: String, orderBy: ContentItemsConnectionOrderInput): ContentItemsConnection
siblingContentItemsConnection(first: Int, after: String, orderBy: ContentItemsConnectionOrderInput): ContentItemsConnection
parentChannel: ContentChannel
theme: Theme
isLiked: Boolean
likedCount: Int
sharing: SharableContentItem
features: [Feature] @deprecated(reason: "Use featureFeed")
featureFeed: FeatureFeed
}
enum UPDATEABLE_PROFILE_FIELDS {
FirstName
LastName
Email
NickName
Gender
BirthDate
}
input UpdateProfileInput {
field: UPDATEABLE_PROFILE_FIELDS!
value: String!
}
"""The `Upload` scalar type represents a file upload."""
scalar Upload
type Url implements Node {
url: String
id: ID!
}
enum USER_AUTH_STATUS {
NONE
NEW_APP_USER
EXISTING_APP_USER
}
enum VERSION {
WEB
KJV
}
type VerticalCardListFeature implements Feature & Node {
id: ID!
order: Int
title: String
subtitle: String
isFeatured: Boolean
cards: [CardListItem]
}
type VideoMedia implements Media {
name: String
key: String
sources: [VideoMediaSource]
embedHtml: String
thumbnail: ImageMedia
}
type VideoMediaSource implements MediaSource {
uri: String
}
interface VideoNode {
videos: [VideoMedia]
}
type WebviewFeature implements Feature & Node {
id: ID!
order: Int
height: Int
title: String
linkText: String
url: String
}
type WeekendContentItem implements ContentItem & Node & ContentNode & Card & VideoNode & AudioNode & ContentChildNode & ContentParentNode & ThemedNode & LikableNode & LiveNode & ShareableNode & FeaturesNode {
id: ID!
title(hyphenated: Boolean): String
publishDate: String
coverImage: ImageMedia
images: [ImageMedia]
videos: [VideoMedia]
audios: [AudioMedia]
htmlContent: String
summary: String
childContentItemsConnection(first: Int, after: String, orderBy: ContentItemsConnectionOrderInput): ContentItemsConnection
siblingContentItemsConnection(first: Int, after: String, orderBy: ContentItemsConnectionOrderInput): ContentItemsConnection
parentChannel: ContentChannel
theme: Theme
isLiked: Boolean
likedCount: Int
communicators: [Person]
guestCommunicators: [String]
sermonDate: String
seriesConnection: SeriesConnection
sermonNotes: [NotesBlock]
liveStream: LiveStream
sharing: SharableContentItem
features: [Feature] @deprecated(reason: "Use featureFeed")
featureFeed: FeatureFeed
}