-
Notifications
You must be signed in to change notification settings - Fork 6
/
schema.api.graphql
366 lines (307 loc) · 6.43 KB
/
schema.api.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
schema {
query: Query
mutation: Mutation
subscription: Subscription
}
type Query {
getImageUploadUrl(extension: String, contentType: String): AWSURL!
getMyTimeline(limit: Int!, nextToken: String): UnhydratedTweetsPage!
getMyProfile: MyProfile!
getProfile(screenName: String!): OtherProfile
getTweets(userId: ID!, limit: Int!, nextToken: String): TweetsPage!
getLikes(userId: ID!, limit: Int!, nextToken: String): UnhydratedTweetsPage!
getFollowers(userId: ID!, limit: Int!, nextToken: String): ProfilesPage!
getFollowing(userId: ID!, limit: Int!, nextToken: String): ProfilesPage!
search(
query: String!,
mode: SearchMode!,
limit: Int!,
nextToken: String
): SearchResultsPage!
getHashTag(
hashTag: String!,
mode: HashTagMode!,
limit: Int!,
nextToken: String
): HashTagResultsPage!
listConversations(
limit: Int!
nextToken: String
): ConversationsPage!
getDirectMessages(
otherUserId: ID!
limit: Int!
nextToken: String
): MessagesPage!
getAnalyticsConfig: AnalyticsConfig
@aws_iam @aws_cognito_user_pools
}
type Mutation {
editMyProfile(newProfile: ProfileInput!): MyProfile!
tweet(text: String!): Tweet!
like(tweetId: ID!): Boolean!
unlike(tweetId: ID!): Boolean!
retweet(tweetId: ID!): Retweet!
unretweet(tweetId: ID!): Boolean!
reply(tweetId: ID!, text: String!): Reply!
follow(userId: ID!): Boolean!
unfollow(userId: ID!): Boolean!
notifyRetweeted(
id: ID!
userId: ID!
tweetId: ID!
retweetedBy: ID!
retweetId: ID!
): Notification!
@aws_iam
notifyLiked(
id: ID!
userId: ID!
tweetId: ID!
likedBy: ID!
): Notification!
@aws_iam
notifyMentioned(
id: ID!
userId: ID!
mentionedBy: ID!
mentionedByTweetId: ID!
): Notification!
@aws_iam
notifyReplied(
id: ID!
userId: ID!
tweetId: ID!
replyTweetId: ID!
repliedBy: ID!
): Notification!
@aws_iam
notifyDMed(
id: ID!
userId: ID!
otherUserId: ID!
message: String!
): Notification!
@aws_iam
sendDirectMessage(
otherUserId: ID!
message: String!
): Conversation!
}
type Subscription {
onNotified(userId: ID!, type: NotificationType): Notification
@aws_subscribe(mutations: ["notifyRetweeted", "notifyLiked", "notifyMentioned", "notifyReplied", "notifyDMed"])
}
enum SearchMode {
Top
Latest
People
Photos
Videos
}
enum HashTagMode {
Top
Latest
People
Photos
Videos
}
input ProfileInput {
name: String!
imageUrl: AWSURL
backgroundImageUrl: AWSURL
bio: String
location: String
website: AWSURL
birthdate: AWSDate
}
interface IProfile {
id: ID!
name: String!
screenName: String!
imageUrl: AWSURL
backgroundImageUrl: AWSURL
bio: String
location: String
website: AWSURL
birthdate: AWSDate
createdAt: AWSDateTime!
tweets: TweetsPage!
followersCount: Int!
followingCount: Int!
tweetsCount: Int!
likesCount: Int!
}
type MyProfile implements IProfile {
id: ID!
name: String!
screenName: String!
imageUrl: AWSURL
backgroundImageUrl: AWSURL
bio: String
location: String
website: AWSURL
birthdate: AWSDate
createdAt: AWSDateTime!
tweets: TweetsPage!
followersCount: Int!
followingCount: Int!
tweetsCount: Int!
likesCount: Int!
}
type OtherProfile implements IProfile {
id: ID!
name: String!
screenName: String!
imageUrl: AWSURL
backgroundImageUrl: AWSURL
bio: String
location: String
website: AWSURL
birthdate: AWSDate
createdAt: AWSDateTime!
tweets: TweetsPage!
followersCount: Int!
followingCount: Int!
tweetsCount: Int!
likesCount: Int!
following: Boolean!
followedBy: Boolean!
}
interface ITweet {
id: ID!
profile: IProfile
createdAt: AWSDateTime!
}
type Tweet implements ITweet {
id: ID!
profile: IProfile
createdAt: AWSDateTime!
text: String!
replies: Int!
likes: Int!
retweets: Int!
liked: Boolean!
retweeted: Boolean!
}
type Reply implements ITweet {
id: ID!
profile: IProfile
createdAt: AWSDateTime!
inReplyToTweet: ITweet!
inReplyToUsers: [IProfile!]
text: String!
replies: Int!
likes: Int!
retweets: Int!
liked: Boolean!
retweeted: Boolean!
}
type Retweet implements ITweet {
id: ID!
profile: IProfile
createdAt: AWSDateTime!
retweetOf: ITweet!
}
type TweetsPage {
tweets: [ITweet!]
nextToken: String
}
type UnhydratedTweetsPage {
tweets: [ITweet!]
nextToken: String
}
type ProfilesPage {
profiles: [IProfile!]
nextToken: String
}
union SearchResult = MyProfile | OtherProfile | Tweet | Reply
type SearchResultsPage {
results: [SearchResult!]
nextToken: String
}
union HashTagResult = MyProfile | OtherProfile | Tweet | Reply
type HashTagResultsPage {
results: [HashTagResult!]
nextToken: String
}
type Retweeted implements iNotification @aws_iam @aws_cognito_user_pools {
id: ID!
type: NotificationType!
userId: ID!
tweetId: ID!
retweetedBy: ID!
retweetId: ID!
createdAt: AWSDateTime!
}
type Liked implements iNotification @aws_iam @aws_cognito_user_pools {
id: ID!
type: NotificationType!
userId: ID!
tweetId: ID!
likedBy: ID!
createdAt: AWSDateTime!
}
type Mentioned implements iNotification @aws_iam @aws_cognito_user_pools {
id: ID!
type: NotificationType!
userId: ID!
mentionedBy: ID!
mentionedByTweetId: ID!
createdAt: AWSDateTime!
}
type Replied implements iNotification @aws_iam @aws_cognito_user_pools {
id: ID!
type: NotificationType!
userId: ID!
tweetId: ID!
replyTweetId: ID!
repliedBy: ID!
createdAt: AWSDateTime!
}
type DMed implements iNotification @aws_iam @aws_cognito_user_pools {
id: ID!
type: NotificationType!
userId: ID!
otherUserId: ID!
message: String!
createdAt: AWSDateTime!
}
union Notification @aws_iam @aws_cognito_user_pools = Retweeted | Liked | Mentioned | Replied | DMed
interface iNotification @aws_iam @aws_cognito_user_pools {
id: ID!
type: NotificationType!
userId: ID!
createdAt: AWSDateTime!
}
enum NotificationType {
Retweeted
Liked
Mentioned
Replied
DMed
}
type Conversation {
id: ID!
otherUser: OtherProfile!
lastMessage: String!
lastModified: AWSDateTime!
}
type ConversationsPage {
conversations: [Conversation!]
nextToken: String
}
type Message {
messageId: ID!
from: IProfile!
message: String!
timestamp: AWSDateTime!
}
type MessagesPage {
messages: [Message!]
nextToken: String
}
type AnalyticsConfig @aws_iam @aws_cognito_user_pools {
identityPoolId: ID!
streamName: String!
}