-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
schema.ts
executable file
·3652 lines (3048 loc) · 71.3 KB
/
schema.ts
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
import gql from 'graphql-tag'
const schema = gql`
# Scalars
scalar Date
scalar JSON
directive @sanitize(
allowedTags: [String]
maxLength: Int
minLength: Int
pattern: String
) on INPUT_FIELD_DEFINITION
# default error code
enum ErrorCode {
UNAUTHORIZED
BAD_REQUEST
NOT_FOUND
FORBIDDEN
}
enum SortOrder {
ASCENDING
DESCENDING
}
enum ReactionType {
LIKE
HEART
SMILE
HUSHED
CRYING
POUT
}
enum SortBy {
UPDATED_TIME
SCORE
SAVED_AT
PUBLISHED_AT
}
enum ContentReader {
WEB
PDF
EPUB
}
input SortParams {
order: SortOrder
by: SortBy!
}
type PageInfo {
hasNextPage: Boolean!
hasPreviousPage: Boolean!
startCursor: String
endCursor: String
totalCount: Int
}
type ArticleEdge {
cursor: String!
node: Article!
}
type FeedArticleEdge {
cursor: String!
node: FeedArticle!
}
type ArticlesSuccess {
edges: [ArticleEdge!]!
pageInfo: PageInfo!
}
# User
type User {
id: ID!
name: String!
isFullUser: Boolean
viewerIsFollowing: Boolean
isFriend: Boolean
@deprecated(reason: "isFriend has been replaced with viewerIsFollowing")
# temporary; same as profile.pictureUrl for backward compatibility purposes
picture: String
profile: Profile!
sharedArticles: [FeedArticle!]!
sharedArticlesCount: Int
sharedHighlightsCount: Int
sharedNotesCount: Int
friendsCount: Int
followersCount: Int
email: String
source: String
intercomHash: String
features: [String]
featureList: [Feature!]
createdAt: Date!
}
type Profile {
id: ID!
username: String!
private: Boolean!
bio: String
pictureUrl: String
}
# Query: User
union UserResult = UserSuccess | UserError
enum UserErrorCode {
UNAUTHORIZED
USER_NOT_FOUND
BAD_REQUEST
}
type UserError {
errorCodes: [UserErrorCode!]!
}
type UserSuccess {
user: User!
}
# Query: Users
union UsersResult = UsersSuccess | UsersError
enum UsersErrorCode {
UNAUTHORIZED
}
type UsersError {
errorCodes: [UsersErrorCode!]!
}
type UsersSuccess {
users: [User!]!
}
# Mutations: googleLogin
union LoginResult = LoginSuccess | LoginError
type LoginSuccess {
me: User!
}
type LoginError {
errorCodes: [LoginErrorCode!]!
}
enum LoginErrorCode {
# Authorization failed due to 3rd party errors
AUTH_FAILED
# User already exists
USER_ALREADY_EXISTS
# Invalid credentials provided
INVALID_CREDENTIALS
# User not found
USER_NOT_FOUND
# Mismatching source
WRONG_SOURCE
# Access denied
ACCESS_DENIED
}
input GoogleLoginInput {
secret: String!
email: String!
}
input GoogleSignupInput {
secret: String!
email: String!
username: String!
name: String!
pictureUrl: String!
sourceUserId: String!
bio: String
}
type GoogleSignupSuccess {
me: User!
}
enum SignupErrorCode {
UNKNOWN
ACCESS_DENIED
GOOGLE_AUTH_ERROR
INVALID_USERNAME
USER_EXISTS
EXPIRED_TOKEN
INVALID_PASSWORD
INVALID_EMAIL
}
type GoogleSignupError {
errorCodes: [SignupErrorCode]!
}
union GoogleSignupResult = GoogleSignupSuccess | GoogleSignupError
# Mutation: logOut
union LogOutResult = LogOutSuccess | LogOutError
enum LogOutErrorCode {
LOG_OUT_FAILED
}
type LogOutError {
errorCodes: [LogOutErrorCode!]!
}
type LogOutSuccess {
message: String
}
enum DeleteAccountErrorCode {
USER_NOT_FOUND
UNAUTHORIZED
FORBIDDEN
}
type DeleteAccountError {
errorCodes: [DeleteAccountErrorCode!]!
}
type DeleteAccountSuccess {
userID: ID!
}
union DeleteAccountResult = DeleteAccountSuccess | DeleteAccountError
union UpdateUserResult = UpdateUserSuccess | UpdateUserError
input UpdateUserInput {
name: String! @sanitize(maxLength: 50)
bio: String @sanitize(maxLength: 400)
}
enum UpdateUserErrorCode {
EMPTY_NAME
BIO_TOO_LONG
USER_NOT_FOUND
UNAUTHORIZED
}
type UpdateUserError {
errorCodes: [UpdateUserErrorCode!]!
}
type UpdateUserSuccess {
user: User!
}
# Mutation: updateUserProfile
union UpdateUserProfileResult =
UpdateUserProfileSuccess
| UpdateUserProfileError
input UpdateUserProfileInput {
userId: ID!
username: String @sanitize(maxLength: 15)
bio: String @sanitize(maxLength: 400)
pictureUrl: String @sanitize
}
type UpdateUserProfileSuccess {
user: User!
}
enum UpdateUserProfileErrorCode {
UNAUTHORIZED
FORBIDDEN
BAD_DATA
BAD_USERNAME
USERNAME_EXISTS
}
type UpdateUserProfileError {
errorCodes: [UpdateUserProfileErrorCode!]!
}
# Article
input ArticleHighlightsInput {
includeFriends: Boolean
}
type ReadState {
reading: Boolean
readingTime: Int
progressPercent: Float!
progressAnchorIndex: Int!
}
type HighlightStats {
highlightCount: Int!
}
type ShareStats {
viewCount: Int!
saveCount: Int!
readDuration: Int!
}
type LinkShareInfo {
title: String!
description: String!
imageUrl: String!
}
type Link {
id: ID!
url: String!
slug: String!
savedBy: User!
savedAt: Date!
updatedAt: Date
savedByViewer: Boolean!
postedByViewer: Boolean!
readState: ReadState!
highlightStats: HighlightStats!
shareInfo: LinkShareInfo!
shareStats: ShareStats!
page: Page!
}
enum PageType {
ARTICLE
BOOK
FILE
PROFILE
WEBSITE
HIGHLIGHTS
UNKNOWN
TWEET
VIDEO
IMAGE
}
type Page {
id: ID!
url: String!
hash: String!
originalUrl: String!
type: PageType!
image: String!
title: String!
author: String
description: String
publishedAt: Date
originalHtml: String!
readableHtml: String!
createdAt: Date!
updatedAt: Date
}
type RecommendingUser {
userId: String!
name: String!
username: String!
profileImageURL: String
}
type Recommendation {
id: ID!
name: String!
user: RecommendingUser
recommendedAt: Date!
note: String
}
enum DirectionalityType {
LTR
RTL
}
type Article {
id: ID!
title: String!
slug: String!
# for uploaded file articles (PDFs), the URL here is the saved omnivore link in GCS
url: String!
hash: String!
content: String!
pageType: PageType
contentReader: ContentReader!
hasContent: Boolean
author: String
image: String
description: String
originalHtml: String
createdAt: Date!
savedAt: Date!
updatedAt: Date
publishedAt: Date
readingProgressTopPercent: Float
readingProgressPercent: Float!
readingProgressAnchorIndex: Int!
sharedComment: String
savedByViewer: Boolean
postedByViewer: Boolean
# for uploaded file articles (PDFs), we track the original article URL separately!
originalArticleUrl: String
highlights(input: ArticleHighlightsInput): [Highlight!]!
shareInfo: LinkShareInfo
isArchived: Boolean!
linkId: ID
labels: [Label!]
uploadFileId: ID
siteName: String
siteIcon: String
subscription: String
unsubMailTo: String
unsubHttpUrl: String
state: ArticleSavingRequestStatus
language: String
readAt: Date
recommendations: [Recommendation!]
wordsCount: Int
folder: String!
feedContent: String
directionality: DirectionalityType
}
# Query: article
union ArticleResult = ArticleSuccess | ArticleError
enum ArticleErrorCode {
NOT_FOUND
BAD_DATA
UNAUTHORIZED
}
type ArticleError {
errorCodes: [ArticleErrorCode!]!
}
type ArticleSuccess {
article: Article!
}
# Query: sharedArticle
union SharedArticleResult = SharedArticleSuccess | SharedArticleError
enum SharedArticleErrorCode {
NOT_FOUND
}
type SharedArticleError {
errorCodes: [SharedArticleErrorCode!]!
}
type SharedArticleSuccess {
article: Article!
}
# Query: articles
union ArticlesResult = ArticlesSuccess | ArticlesError
enum ArticlesErrorCode {
UNAUTHORIZED
}
type ArticlesError {
errorCodes: [ArticlesErrorCode!]!
}
# PageInfo
input PageInfoInput {
title: String
author: String @sanitize
description: String @sanitize
previewImage: String @sanitize
canonicalUrl: String @sanitize
publishedAt: Date
contentType: String
}
input PreparedDocumentInput {
document: String!
pageInfo: PageInfoInput!
}
# Mutation: uploadFileRequest
enum UploadFileStatus {
INITIALIZED
COMPLETED
}
union UploadFileRequestResult =
UploadFileRequestSuccess
| UploadFileRequestError
input UploadFileRequestInput {
url: String!
contentType: String!
createPageEntry: Boolean
clientRequestId: String
}
enum UploadFileRequestErrorCode {
UNAUTHORIZED
BAD_INPUT
FAILED_CREATE
}
type UploadFileRequestError {
errorCodes: [UploadFileRequestErrorCode!]!
}
type UploadFileRequestSuccess {
id: ID!
uploadSignedUrl: String
uploadFileId: ID
createdPageId: String
}
# Mutation: createArticle
union CreateArticleResult = CreateArticleSuccess | CreateArticleError
input CreateArticleInput {
url: String!
# can be used for saving an article without triggering puppeteer (for instance, from a browser extension)
preparedDocument: PreparedDocumentInput
articleSavingRequestId: ID
uploadFileId: ID
skipParsing: Boolean
source: String
state: ArticleSavingRequestStatus
labels: [CreateLabelInput!]
folder: String
rssFeedUrl: String
savedAt: Date
publishedAt: Date
}
enum CreateArticleErrorCode {
UNABLE_TO_FETCH
UNABLE_TO_PARSE
UNAUTHORIZED
NOT_ALLOWED_TO_PARSE
PAYLOAD_TOO_LARGE
UPLOAD_FILE_MISSING
ELASTIC_ERROR
}
type CreateArticleError {
errorCodes: [CreateArticleErrorCode!]!
}
type CreateArticleSuccess {
createdArticle: Article!
# user that saved the article
user: User!
created: Boolean! # Indicates if an article has been created or updated
}
# Used for all save operations
enum SaveErrorCode {
UNKNOWN
UNAUTHORIZED
EMBEDDED_HIGHLIGHT_FAILED
}
type SaveError {
errorCodes: [SaveErrorCode!]!
message: String
}
type SaveSuccess {
url: String!
clientRequestId: ID!
}
input SaveFileInput {
url: String!
source: String!
clientRequestId: ID!
uploadFileId: ID!
state: ArticleSavingRequestStatus
labels: [CreateLabelInput!]
folder: String
savedAt: Date
publishedAt: Date
subscription: String
}
input ParseResult {
title: String!
byline: String
dir: String
content: String!
textContent: String!
length: Int!
excerpt: String!
siteName: String
siteIcon: String
previewImage: String
publishedDate: Date
language: String
}
input SavePageInput {
url: String!
source: String!
clientRequestId: ID!
title: String
originalContent: String!
parseResult: ParseResult
state: ArticleSavingRequestStatus
labels: [CreateLabelInput!]
rssFeedUrl: String
savedAt: Date
publishedAt: Date
folder: String
}
input SaveUrlInput {
url: String!
source: String!
clientRequestId: ID!
state: ArticleSavingRequestStatus
labels: [CreateLabelInput!]
locale: String
timezone: String
savedAt: Date
publishedAt: Date
folder: String
}
union SaveResult = SaveSuccess | SaveError
input UpdatePageInput {
pageId: ID!
title: String
description: String
byline: String
savedAt: Date
publishedAt: Date
previewImage: String @sanitize
state: ArticleSavingRequestStatus
}
type UpdatePageSuccess {
updatedPage: Article!
}
enum UpdatePageErrorCode {
UPDATE_FAILED
UNAUTHORIZED
BAD_REQUEST
NOT_FOUND
FORBIDDEN
}
type UpdatePageError {
errorCodes: [UpdatePageErrorCode!]!
}
union UpdatePageResult = UpdatePageSuccess | UpdatePageError
# Mutation: setFollow
union SetFollowResult = SetFollowSuccess | SetFollowError
input SetFollowInput {
userId: ID!
follow: Boolean!
}
enum SetFollowErrorCode {
NOT_FOUND
UNAUTHORIZED
}
type SetFollowError {
errorCodes: [SetFollowErrorCode!]!
}
type SetFollowSuccess {
updatedUser: User!
}
# Mutation: saveArticleReadingProgress
union SaveArticleReadingProgressResult =
SaveArticleReadingProgressSuccess
| SaveArticleReadingProgressError
input SaveArticleReadingProgressInput {
id: ID!
readingProgressTopPercent: Float
readingProgressPercent: Float!
readingProgressAnchorIndex: Int
force: Boolean
}
enum SaveArticleReadingProgressErrorCode {
NOT_FOUND
BAD_DATA
UNAUTHORIZED
}
type SaveArticleReadingProgressError {
errorCodes: [SaveArticleReadingProgressErrorCode!]!
}
type SaveArticleReadingProgressSuccess {
updatedArticle: Article!
}
# Mutation: setBookmark
union SetBookmarkArticleResult =
SetBookmarkArticleSuccess
| SetBookmarkArticleError
input SetBookmarkArticleInput {
articleID: ID!
bookmark: Boolean!
}
enum SetBookmarkArticleErrorCode {
NOT_FOUND
BOOKMARK_EXISTS
}
type SetBookmarkArticleError {
errorCodes: [SetBookmarkArticleErrorCode!]!
}
type SetBookmarkArticleSuccess {
bookmarkedArticle: Article!
}
# Feed Article
type FeedArticle {
id: ID!
article: Article!
sharedBy: User!
sharedAt: Date!
sharedComment: String
sharedWithHighlights: Boolean
highlightsCount: Int
annotationsCount: Int
highlight: Highlight
reactions: [Reaction!]!
}
enum HighlightType {
HIGHLIGHT
REDACTION
NOTE
}
enum RepresentationType {
CONTENT
FEED_CONTENT
}
# Highlight
type Highlight {
id: ID!
# used for simplified url format
shortId: String!
user: User!
quote: String
# piece of content before the quote
prefix: String
# piece of content after the quote
suffix: String
patch: String
annotation: String
replies: [HighlightReply!]!
sharedAt: Date
createdAt: Date!
updatedAt: Date
reactions: [Reaction!]!
createdByMe: Boolean!
highlightPositionPercent: Float
highlightPositionAnchorIndex: Int
labels: [Label!]
type: HighlightType!
html: String
color: String
representation: RepresentationType!
libraryItem: Article!
}
input CreateHighlightInput {
id: ID!
shortId: String!
articleId: ID!
patch: String
quote: String @sanitize(maxLength: 12000, minLength: 1)
prefix: String @sanitize
suffix: String @sanitize
annotation: String @sanitize(maxLength: 4000)
sharedAt: Date
highlightPositionPercent: Float
highlightPositionAnchorIndex: Int
type: HighlightType
html: String
color: String
representation: RepresentationType
}
type CreateHighlightSuccess {
highlight: Highlight!
}
enum CreateHighlightErrorCode {
UNAUTHORIZED
FORBIDDEN
BAD_DATA
NOT_FOUND
ALREADY_EXISTS
}
type CreateHighlightError {
errorCodes: [CreateHighlightErrorCode!]!
}
union CreateHighlightResult = CreateHighlightSuccess | CreateHighlightError
input MergeHighlightInput {
id: ID!
shortId: ID!
articleId: ID!
patch: String!
quote: String! @sanitize(maxLength: 12000, minLength: 1)
prefix: String @sanitize
suffix: String @sanitize
annotation: String @sanitize(maxLength: 4000)
overlapHighlightIdList: [String!]!
highlightPositionPercent: Float
highlightPositionAnchorIndex: Int
html: String
color: String
representation: RepresentationType
}
type MergeHighlightSuccess {
highlight: Highlight!
overlapHighlightIdList: [String!]!
}
enum MergeHighlightErrorCode {
UNAUTHORIZED
FORBIDDEN
BAD_DATA
NOT_FOUND
ALREADY_EXISTS
}
type MergeHighlightError {
errorCodes: [MergeHighlightErrorCode!]!
}
union MergeHighlightResult = MergeHighlightSuccess | MergeHighlightError
input UpdateHighlightInput {
highlightId: ID!
annotation: String @sanitize(maxLength: 4000)
sharedAt: Date
quote: String @sanitize(maxLength: 12000, minLength: 1)
html: String
color: String
}
type UpdateHighlightSuccess {
highlight: Highlight!
}
enum UpdateHighlightErrorCode {
UNAUTHORIZED
FORBIDDEN
NOT_FOUND
BAD_DATA
}
type UpdateHighlightError {
errorCodes: [UpdateHighlightErrorCode!]!
}
union UpdateHighlightResult = UpdateHighlightSuccess | UpdateHighlightError
type DeleteHighlightSuccess {
highlight: Highlight!
}
enum DeleteHighlightErrorCode {
UNAUTHORIZED
FORBIDDEN
NOT_FOUND
}
type DeleteHighlightError {
errorCodes: [DeleteHighlightErrorCode!]!
}
union DeleteHighlightResult = DeleteHighlightSuccess | DeleteHighlightError
# HighlightReply
type HighlightReply {
id: ID!
user: User!
highlight: Highlight!
text: String!
createdAt: Date!
updatedAt: Date
}
input CreateHighlightReplyInput {
highlightId: ID!
text: String!
}
type CreateHighlightReplySuccess {
highlightReply: HighlightReply!
}
enum CreateHighlightReplyErrorCode {
UNAUTHORIZED
FORBIDDEN
NOT_FOUND
EMPTY_ANNOTATION
}
type CreateHighlightReplyError {
errorCodes: [CreateHighlightReplyErrorCode!]!
}
union CreateHighlightReplyResult =
CreateHighlightReplySuccess
| CreateHighlightReplyError
input UpdateHighlightReplyInput {
highlightReplyId: ID!
text: String!
}
type UpdateHighlightReplySuccess {
highlightReply: HighlightReply!
}
enum UpdateHighlightReplyErrorCode {
UNAUTHORIZED
FORBIDDEN
NOT_FOUND
}
type UpdateHighlightReplyError {
errorCodes: [UpdateHighlightReplyErrorCode!]!
}
union UpdateHighlightReplyResult =
UpdateHighlightReplySuccess
| UpdateHighlightReplyError
type DeleteHighlightReplySuccess {
highlightReply: HighlightReply!
}
enum DeleteHighlightReplyErrorCode {
UNAUTHORIZED
FORBIDDEN
NOT_FOUND
}
type DeleteHighlightReplyError {
errorCodes: [DeleteHighlightReplyErrorCode!]!
}
union DeleteHighlightReplyResult =
DeleteHighlightReplySuccess
| DeleteHighlightReplyError
# Reaction
type Reaction {
id: ID!
user: User!
code: ReactionType!
createdAt: Date!
updatedAt: Date
}
input CreateReactionInput {
highlightId: ID
userArticleId: ID
code: ReactionType!
}
type CreateReactionSuccess {
reaction: Reaction!
}
enum CreateReactionErrorCode {
UNAUTHORIZED
FORBIDDEN
BAD_TARGET
BAD_CODE
NOT_FOUND
}
type CreateReactionError {
errorCodes: [CreateReactionErrorCode!]!
}
union CreateReactionResult = CreateReactionSuccess | CreateReactionError
type DeleteReactionSuccess {
reaction: Reaction!
}
enum DeleteReactionErrorCode {
UNAUTHORIZED
FORBIDDEN
NOT_FOUND
}
type DeleteReactionError {
errorCodes: [DeleteReactionErrorCode!]!
}
union DeleteReactionResult = DeleteReactionSuccess | DeleteReactionError
# Query: Feed
union FeedArticlesResult = FeedArticlesSuccess | FeedArticlesError
enum FeedArticlesErrorCode {
UNAUTHORIZED
}