-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
461 lines (409 loc) · 9.33 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
input AddCategoryInput {
title: String!
description: String = ""
slug: String!
parent: ObjectId
}
input AddCommentInput {
user: ObjectId
post: ObjectId!
parent: ObjectId
public: Boolean = true
content: String!
children: [ObjectId!]
}
input AddElementInput {
parent: ObjectId
type: ElementType!
html: String = ""
zone: String = "unassigned"
image: ObjectId
style: JSON = ""
}
input AddPostInput {
author: ObjectId
title: String = ""
slug: String!
brief: String = ""
public: Boolean = false
categories: [ObjectId!] = []
tags: [String!] = []
featuredImage: ObjectId
}
input AddUserInput {
username: String!
password: String!
email: String!
avatar: String
avatarFile: ObjectId
privileges: UserPrivilege
meta: JSON
}
input AddVolumeInput {
name: String!
user: ObjectId
type: VolumeType = local
memoryAllocated: Long
meta: JSON
}
"""Object representing a Authentication response"""
type AuthResponse {
message: String!
authenticated: Boolean!
user: User
}
"""Object representing a Category"""
type Category {
_id: ObjectId!
title: String!
description: String
slug: String!
parent: Category
children: [Category!]
}
"""Object representing a Comment"""
type Comment {
_id: ObjectId!
author: String!
user: User
postId: ObjectId
parentId: ObjectId
post: Post!
parent: Comment
public: Boolean!
content: String!
children: [Comment!]!
createdOn: Long!
lastUpdated: Long!
}
enum CommentSortType {
updated
created
}
enum CommentVisibility {
all
public
private
}
"""Object representing a Document"""
type Document {
_id: ObjectId!
author: User
template: Template!
createdOn: Long!
lastUpdated: Long!
elementsOrder: [String!]
elements: [Element!]
html: JSON
}
"""Object representing a Draft"""
type Draft {
_id: ObjectId!
html: JSON!
createdOn: Long!
parent: Document!
}
"""Object representing a Element"""
type Element {
_id: ObjectId!
parent: ObjectId!
type: ElementType!
html: String!
zone: String!
image: File
style: JSON
}
"""Describes the different types of allowed elements"""
enum ElementType {
paragraph
list
image
code
header1
header2
header3
header4
header5
header6
html
}
"""Object representing a File"""
type File {
_id: ObjectId!
name: String!
identifier: String!
publicURL: String!
mimeType: String!
created: Long!
size: Long!
numDownloads: Int!
isPublic: Boolean!
user: User!
volume: Volume!
parentFile: File
meta: JSON
}
"""The type of sorting performed when fetching files"""
enum FileSortType {
created
memory
name
}
"""
The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).
"""
scalar JSON
input LoginInput {
username: String!
password: String!
remember: Boolean = true
}
"""64-bit integral numbers"""
scalar Long
type Mutation {
createCategory(token: AddCategoryInput!): Category!
updateCategory(token: UpdateCategoryInput!): Category!
removeCategory(id: String!): Boolean!
addUser(token: AddUserInput!): User!
removeUser(username: String!): Boolean!
updateUser(token: UpdateUserInput!): User!
removeComment(id: ObjectId!): Boolean!
addComment(token: AddCommentInput!): Comment!
patchComment(token: UpdateCommentInput!): Comment!
login(token: LoginInput!): AuthResponse!
register(token: RegisterInput!): AuthResponse!
approveActivation(username: String!): Boolean!
resendActivation(activationPath: String = "/activate", username: String!): Boolean!
requestPasswordReset(accountRedirectURL: String = "/", username: String!): Boolean!
passwordReset(password: String!, key: String!, username: String!): Boolean!
logout: Boolean!
addVolume(token: AddVolumeInput!): Volume!
updateVolume(token: UpdateVolumeInput!): Volume!
removeVolume(id: ObjectId!): Boolean!
removeFile(volumeId: ObjectId, id: ObjectId!): Boolean!
patchFile(token: UpdateFileInput!): File!
changeDocTemplate(template: ObjectId!, id: ObjectId!): Boolean!
addDocElement(index: Int, token: AddElementInput!, docId: ObjectId!): Element!
updateDocElement(index: Int, token: UpdateElementInput!, docId: ObjectId!): Element!
removeDocElement(elementId: ObjectId!, docId: ObjectId!): Boolean!
removePostDraft(draftId: ObjectId!, postId: ObjectId!): Boolean!
createPost(token: AddPostInput!): Post!
patchPost(token: UpdatePostInput!): Post!
removePost(id: ObjectId!): Boolean!
}
"""Mongo object id scalar type"""
scalar ObjectId
"""A page of wrapper of categories"""
type PaginatedCategoryResponse {
data: [Category!]!
count: Int!
limit: Int!
index: Int!
}
"""A page of wrapper of comments"""
type PaginatedCommentsResponse {
data: [Comment!]!
count: Int!
limit: Int!
index: Int!
}
"""A page of wrapper of files"""
type PaginatedFilesResponse {
data: [File!]!
count: Int!
limit: Int!
index: Int!
}
"""A page of wrapper of posts"""
type PaginatedPostsResponse {
data: [Post!]!
count: Int!
limit: Int!
index: Int!
}
"""A page of wrapper of templates"""
type PaginatedTemplateResponse {
data: [Template!]!
count: Int!
limit: Int!
index: Int!
}
"""A page of wrapper of users"""
type PaginatedUserResponse {
data: [User!]!
count: Int!
limit: Int!
index: Int!
}
"""A page of wrapper of volumes"""
type PaginatedVolumeResponse {
data: [Volume!]!
count: Int!
limit: Int!
index: Int!
}
"""Object representing a Post"""
type Post {
_id: ObjectId!
author: User
title: String!
slug: String!
brief: String!
public: Boolean!
categories: [Category!]!
tags: [String!]!
createdOn: Long!
lastUpdated: Long!
featuredImage: File
document: Document!
latestDraft: Draft
}
enum PostSortType {
title
created
modified
}
enum PostVisibility {
all
public
private
}
type Query {
category(slug: String, id: String): Category
"""Gets an array of all categories"""
categories(root: Boolean = false, index: Int = 0, limit: Int = 10): PaginatedCategoryResponse!
user(user: String!): User
users(index: Int = 0, limit: Int = 10, search: String = ""): PaginatedUserResponse!
comment(id: ObjectId!): Comment
"""Gets a paginated list of comments"""
comments(root: Boolean = false, index: Int = 0, limit: Int = 10, keyword: String, user: String, visibility: CommentVisibility = all, sortOrder: SortOrder = desc, sortType: CommentSortType = created, parentId: ObjectId, postId: ObjectId): PaginatedCommentsResponse!
authenticated: AuthResponse!
volume(id: ObjectId!): Volume
volumes(index: Int = 0, limit: Int = 10, search: String = "", user: String, sortOrder: SortOrder = asc, sortType: VolumeSortType = created): PaginatedVolumeResponse!
file(id: ObjectId!): File
"""Gets a paginated list of files"""
files(index: Int = 0, limit: Int = 10, search: String, user: String, volumeId: ObjectId, sortOrder: SortOrder = asc, sortType: FileSortType = created): PaginatedFilesResponse!
document(id: ObjectId!): Document
template(id: ObjectId): Template
"""Gets an array of all templates"""
templates: PaginatedTemplateResponse!
post(slug: String, id: ObjectId): Post
"""Gets a paginated list of posts"""
posts(index: Int = 0, limit: Int = 10, author: String, keyword: String, visibility: PostVisibility = all, sortOrder: SortOrder = desc, sortType: PostSortType = created, categories: [ObjectId!], tags: [String!], requiredTags: [String!]): PaginatedPostsResponse!
getPostDrafts(id: ObjectId!): [Draft!]!
}
input RegisterInput {
username: String!
password: String!
email: String!
activationUrl: String
}
enum SortOrder {
asc
desc
}
"""Object representing a Template"""
type Template {
_id: ObjectId!
name: String!
description: String!
defaultZone: String!
zones: [String!]!
}
input UpdateCategoryInput {
_id: ObjectId!
title: String!
description: String
slug: String!
parent: ObjectId
}
input UpdateCommentInput {
_id: ObjectId!
public: Boolean = true
content: String!
}
input UpdateElementInput {
_id: ObjectId!
parent: ObjectId
html: String
zone: String
image: ObjectId
style: JSON
}
input UpdateFileInput {
_id: ObjectId!
name: String!
isPublic: Boolean
}
input UpdatePostInput {
_id: ObjectId!
author: ObjectId
title: String
slug: String
brief: String
public: Boolean
categories: [ObjectId!]
tags: [String!]
featuredImage: ObjectId
createdOn: Long
}
input UpdateUserInput {
_id: ObjectId!
username: String
email: String
privileges: UserPrivilege
meta: JSON
avatar: String
avatarFile: ObjectId
}
input UpdateVolumeInput {
_id: ObjectId!
memoryUsed: Long
name: String
user: ObjectId
memoryAllocated: Long
meta: JSON
}
"""Object representing a User"""
type User {
_id: ObjectId!
username: String!
email: String
registerKey: String!
avatar: String!
avatarFile: File
createdOn: Long!
lastLoggedIn: Long!
isActivated: Boolean!
privileges: UserPrivilege!
meta: JSON!
}
"""The core type of user privilege"""
enum UserPrivilege {
super
admin
regular
}
"""Object representing a Volume"""
type Volume {
_id: ObjectId!
name: String!
identifier: String!
type: VolumeType!
created: Long!
memoryUsed: Long!
memoryAllocated: Long!
user: User!
meta: JSON
}
"""The type of sorting performed when fetching volumes"""
enum VolumeSortType {
created
memory
name
}
"""The core type of volume type"""
enum VolumeType {
google
local
}