This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
467 lines (426 loc) · 10.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
# starship-schema 0.10
# Users
type User {
id: ID!
username: String!
admin: Boolean
profilePicture: String
profileBanner: String
profileBio: String
banned: Boolean
following: [Planet]
memberOf: [Planet]
createdAt: String!
usedBytes: Float!
capWaived: Boolean
tfaEnabled: Boolean
blockedUsers: [User]
customEmojis: [CustomEmoji]
online: Boolean
notificationSetting: Int
}
# Reports
type Report {
id: ID!
owner: User!
createdAt: String!
objectType: Int!
objectId: ID!
reportType: Int
details: String
user: User!
solved: Boolean!
}
# Planets
type PlanetComponent {
name: String
componentId: ID!
type: String!
}
type Planet {
id: ID!
name: String!
createdAt: String!
owner: User!
private: Boolean!
followerCount: Int!
components: [PlanetComponent]!
homeComponent: PlanetComponent
featured: Boolean
verified: Boolean
partnered: Boolean
members: [User]
featuredDescription: String
invites: [Invite]
banned: [User]
css: String
description: String
customEmojis: [CustomEmoji]
unread: Boolean
mentioned: Boolean
}
# Invites
type Invite {
id: ID!
planet: Planet!
owner: User!
createdAt: String!
}
### ----------
### COMPONENTS
### ----------
# Page
type Page {
id: ID!
createdAt: String!
owner: User!
updatedAt: String!
planet: Planet!
content: String!
}
# Wiki (currently impl. as Page Group)
type Wiki {
id: ID!
createdAt: String!
owner: User!
planet: Planet!
pages: [WikiPage]
}
type WikiPage {
id: ID!
wiki: Wiki!
content: String
planet: Planet!
createdAt: String!
name: String!
}
# Files
type FileComponent {
id: ID!
createdAt: String!
owner: User!
planet: Planet!
}
type FileObject {
id: ID!
path: [String!]
parent: FileObject
name: String!
planet: Planet
owner: User
createdAt: String
component: FileComponent
type: String!
fileType: String!
finishedUploading: Boolean
shareId: String!
size: Float
}
# Forum
type Forum {
id: ID!
createdAt: String!
owner: User!
planet: Planet!
stickiedPosts: [ForumPost]
posts(limit: Int, cursor: String, sortMethod: String, tag: String): ForumPostFeed,
tags: [String]
}
type ForumPost {
id: ID!
name: String!
component: Forum!
content: String!
owner: User!
planet: Planet!
tags: [String]!
reactions: [Reaction]!
replyCount: Int!
stickied: Boolean!
locked: Boolean
createdAt: String!
updatedAt: String!
replies(limit: Int, cursor: String): ForumReplyFeed
mentions: [User]!
}
type ForumReply {
id: ID!
post: ForumPost!
component: Forum!
content: String!
owner: User!
planet: Planet!
reactions: [Reaction]!
stickied: Boolean!
createdAt: String!
updatedAt: String!
mentions: [User]!
}
# Chat and Direct Messages
type Chat {
id: ID!
createdAt: String!
owner: User!
planet: Planet!
channels: [Channel]
unread: Boolean
mentioned: Boolean
}
type Channel {
id: ID!
name: String!
type: Int!
topic: String!
createdAt: String!
messages(limit: Int, cursor: String): MessageFeed
pinnedMessages(limit: Int, cursor: String): MessageFeed
component: Chat
planet: Planet
owner: User!
users: [User]
unread: Boolean
mentioned: Boolean
lastRead: String
}
type Message {
id: ID!
createdAt: String!
content: String!
pinned: Boolean!
edited: Boolean!
channel: Channel!
owner: User!
mentions: [User]!
reactions: [Reaction]!
parent: Message
attachments: [Attachment]
}
# Misc. Types
type Notification {
id: ID!
user: User!
createdAt: String!
text: String!
icon: String!
isRead: Boolean!
}
type CustomEmoji {
id: ID!
owner: User!
planet: Planet
user: User!
name: String!
url: String!
}
type SysInfo {
serverName: String!
version: String!
schemaVersion: String!,
supportedFeatures: [String]!,
supportedComponents: [String]!,
clientFlags: [String]!,
paths: SysInfoPaths
}
type SysInfoPaths {
emojiURL: String
pfpURL: String
bannerURL: String
graphQLEndpoint: String!
}
type Reaction {
emoji: String!
reactors: [String!]!
}
type Attachment {
id: ID!
name: String!
type: String!
url: String!
}
### ----------
### FEED TYPES
### ----------
type ForumPostFeed {
cursor: String!
forumPosts: [ForumPost]
}
type ForumReplyFeed {
cursor: String!
forumReplies: [ForumReply]
}
type MessageFeed {
cursor: String!
messages: [Message]
}
type ChannelFeed {
cursor: String!
channels: [Channel]
}
### -----------------
### PURE RETURN TYPES
### -----------------
type LoginPayload {
token: String!
expectingTFA: Boolean!
}
type UploadFileData {
documentId: String!
uploadUrl: String!
}
type UploadMarkdownImageData {
finalUrl: String!
uploadUrl: String!
}
### -------------
### FUNCTIONALITY
### -------------
type Query {
# Users
user(id: ID!): User
adminUser(id: ID!): User
adminUsers(startNumber: Int!, count: Int!): [User]
currentUser: User
# Reports
report(id: ID!): Report
allReports(startNumber: Int!, count: Int!): [Report]!
reportsByUser(userId: ID!, startNumber: Int!, count: Int!): [Report]!
searchForPlanets(searchText: String!): [Planet]
# Planets
featuredPlanets: [Planet]
planet(id: ID!): Planet
adminPlanets(startNumber: Int!, count: Int!): [Planet]
# Invites
invite(id: ID!): Invite
# Pages
page(id: ID!): Page
# Wiki
wiki(id: ID!): Wiki
wikiPage(id: ID!): WikiPage
# Forum
forum(id: ID!): Forum
forumPost(id: ID!): ForumPost
forumReply(id: ID!): ForumReply
# Files
fileComponent(id: ID!): FileComponent
files(componentId: ID!, parent: String!): [FileObject]
folders(componentId: ID!, parent: String!): [FileObject]
fileObject(id: ID!): FileObject
fileObjectArray(ids: [ID]!): [FileObject]!
searchForFiles(componentId: ID!, parent: String!, searchText: String!): [FileObject]
# AWS
# While many of these methods *could be* included in the
# initial object query, because they expire it's better
# to fetch this information as needed
downloadFileObject(fileId: ID!): String
downloadFolderObject(folderId: ID!): [String]
getObjectPreview(fileId: ID!): String
# Notifications
notifications: [Notification]
notification(id: ID!): Notification
# Custom Emojis
customEmoji(id: ID!): CustomEmoji
# System Info
sysInfo: SysInfo
# Chat
chat(id: ID!): Chat
channel(id: ID!): Channel
message(id: ID!): Message
directMessages(limit: Int, cursor: String): ChannelFeed
}
type Subscription {
notificationRecieved: Notification
messageSent(channelId: ID!): Message
messageUpdated(channelId: ID!): Message
messageRemoved(channelId: ID!): Message
}
type Mutation {
# Users
insertUser(email: String!, password: String!, username: String!, recaptcha: String!): User
banUser(userId: ID!): User
resendVerificationEmail(username: String!): Boolean
sendResetPasswordEmail(username: String!): Boolean
resetPassword(userId: ID!, token: String, password: String!): Boolean
activateEmail(userId: ID!, token: String!): Boolean
loginUser(username: String!, password: String!): LoginPayload!
finalizeAuthorization(loginToken: String!, totpToken: Int!): LoginPayload!
generateTOTPSecret: String
confirmTFA(token: Int!): [Int]
disableTFA(token: Int!): Boolean
toggleBlockUser(userId: ID!): User
updateProfileBio(bio: String!): User
setNotificationSetting(option: Int!): User
# Reports
insertReport(objectType: Int!, objectId: ID!, reportType: Int!, details: String!, userId: ID!): Report
solveReport(reportId: ID!): Report
# Planets
insertPlanet(name: String!, private: Boolean!): Planet
addComponent(planetId: ID!, name: String!, type: String!): Planet
followPlanet(planetId: ID!): Planet
removeComponent(planetId: ID!, componentId: ID!): Planet
updateName(planetId: ID!, name: String!): Planet
togglePrivate(planetId: ID!): Planet
removeMember(planetId: ID!, userId: ID!): Planet
renameComponent(planetId: ID!, name: String!, componentId: ID!): Planet
applyModTools(planetId: ID!, featured: Boolean!, verified: Boolean!, partnered: Boolean!, featuredDescription: String!): Planet
toggleBan(planetId: ID!, userId: ID!): Planet
setCSS(planetId: ID!, css: String!): Planet
setDescription(planetId: ID!, description: String!): Planet
deletePlanet(planetId: ID!): Boolean
# Invites
insertInvite(planetId: ID!): Invite
useInvite(inviteId: ID!): Planet
removeInvite(inviteId: ID!): Planet
# Pages
updatePage(pageId: ID!, content: String!): Page
# Wikis
insertWikiPage(wikiId: ID!, content: String!, name: String!): WikiPage
updateWikiPage(pageId: ID!, newContent: String!): WikiPage
removeWikiPage(pageId: ID!): Wiki
renameWikiPage(pageId: ID!, newName: String!): WikiPage
# Forums
createForumTag(forumId: ID!, tag: String!): Forum
removeForumTag(forumId: ID!, tag: String!): Forum
insertForumPost(forumId: ID!, name: String!, content: String!, tag: String): ForumPost
updateForumPost(postId: ID!, content: String!): ForumPost
deleteForumPost(postId: ID!): Boolean
lockForumPost(postId: ID!): ForumPost
stickyForumPost(postId: ID!): ForumPost
forumPostReact(postId: ID!, emojiId: String!): ForumPost
insertForumReply(postId: ID!, content: String!): ForumReply
updateForumReply(replyId: ID!, content: String!): ForumReply
deleteForumReply(replyId: ID!): Boolean
forumReplyReact(replyId: ID!, emojiId: String!): ForumReply
# Files
createFolder(componentId: ID!, parent: String!, name: String!): FileObject
renameObject(objectId: ID!, name: String!): FileObject
moveObject(objectIds: [ID]!, parent: String!): [FileObject]
cancelUpload(objectId: ID!): Boolean
createMultiObjectDownloadTicket(objectIds: [ID]!, zipName: String!): String
# AWS
uploadFileObject(folderId: String!, type: String!, name: String!, filesId: ID!): UploadFileData
deleteFileObject(objectIds: [ID]!): Boolean
uploadMarkdownImage(type: String!, size: Int!): UploadMarkdownImageData
uploadProfilePicture(type: String!, size: Int!): String
uploadProfileBanner(type: String!, size: Int!): String
completeUpload(objectId: ID!): FileObject
copyFile(objectIds: [ID]!, parent: String!): [FileObject]
uploadCustomEmoji(name: String!, size: Int!, type: String!, planetId: ID): String
uploadAttachment(type: String!, size: Int!, name: String!): UploadFileData
# Notifications
clearNotification(notificationId: ID!): Boolean
clearAllNotifications: Boolean
markAllRead: Boolean
# Custom Emojis
deleteCustomEmoji(emojiId: ID!): Boolean
# Chat
createChannel(chatId: ID!, name: String!): Channel
renameChannel(channelId: ID!, name: String!): Channel
setChannelTopic(channelId: ID!, topic: String!): Channel
deleteChannel(channelId: ID!): Boolean
createDirectMessage(userId: ID!): Boolean
sendMessage(channelId: ID!, content: String!, attachments: [ID] replyTo: ID): Message
editMessage(messageId: ID!, content: String!): Message
reactToMessage(messageId: ID!, emojiId: String!): Message
pinMessage(messageId: ID!): Message
deleteMessage(messageId: ID!): Boolean
}