-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.ts
More file actions
400 lines (345 loc) · 6.3 KB
/
project.ts
File metadata and controls
400 lines (345 loc) · 6.3 KB
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
import { gql } from 'apollo-server-express';
export default gql`
"""
Rate limits configuration input
"""
input RateLimitSettingsInput {
"""
Rate limit threshold (N events)
"""
N: Int!
"""
Rate limit period in seconds (T seconds)
"""
T: Int!
}
"""
Rate limits configuration
"""
type RateLimitSettings {
"""
Rate limit threshold (N events)
"""
N: Int!
"""
Rate limit period in seconds (T seconds)
"""
T: Int!
}
"""
Possible events order
"""
enum EventsSortOrder {
BY_DATE
BY_COUNT
BY_AFFECTED_USERS
}
"""
Pagination cursor of events portion and list of daily events
"""
type DailyEventsPortion {
"""
Pointer to the next portion of dailyEvents, null if there are no events left
"""
nextCursor: DailyEventsCursor
"""
List of daily events
"""
dailyEvents: [DailyEvent]
}
"""
Daily event information with event itself
"""
type DailyEvent {
"""
ID of the daily event
"""
id: ID!
"""
Count of events in this day
"""
count: Int!
"""
Count of the users affected by this event in this day
"""
affectedUsers: Int!
"""
Timestamp of the event grouping
"""
groupingTimestamp: Int!
"""
Last repetition of the day that represents all of the repetition this day
"""
event: Event!
}
"""
Cursor for fetching daily events portion
"""
type DailyEventsCursor {
"""
Grouping timestamp of the first event in the next portion
"""
groupingTimestampBoundary: Int!
"""
Sort key value of the first event in the next portion
"""
sortValueBoundary: Int!
"""
ID of the first event of in the next portion
"""
idBoundary: ID!
}
input DailyEventsCursorInput {
groupingTimestampBoundary: Int!
sortValueBoundary: Int!
idBoundary: ID!
}
"""
Events filters input type
"""
input EventsFiltersInput {
"""
If True, includes events with resolved mark to the output
"""
resolved: Boolean
"""
If True, includes events with starred mark to the output
"""
starred: Boolean
"""
If True, includes events with ignored mark to the output
"""
ignored: Boolean
}
"""
Respose object with updated project and his id
"""
type UpdateProjectResponse {
"""
Project id
"""
recordId: ID!
"""
Modified project
"""
record: Project!
}
"""
Project representation
"""
type Project {
"""
Project ID
"""
id: ID! @renameFrom(name: "_id")
"""
Project token
"""
token: String!
"""
Project name
"""
name: String!
"""
Project description
"""
description: String
"""
Date of creating project
"""
creationDate: DateTime!
"""
Project domain
"""
domain: String
"""
Project URI
"""
uri: String
"""
Project image
"""
image: String
"""
User who created project
"""
uidAdded: User!
"""
Project's Event
"""
event(eventId: ID!, originalEventId: ID!): Event
"""
Project events
"""
events(
"Maximum number of results"
limit: Int = 50
"Certain number of documents to skip"
skip: Int = 0
): [Event!]
"""
Returns recent events grouped by day
"""
recentEvents(
"Maximum number of results"
limit: Int! = 50
"Certain number of documents to skip"
skip: Int! = 0
"Events sort order"
sort: EventsSortOrder = lastRepetitionTime
"Event marks by which events should be sorted"
filters: EventsFiltersInput
"Search query"
search: String
): RecentEvents
"""
Portion of daily events
"""
dailyEventsPortion(
"""
Maximum number of results
"""
limit: Int! = 50
"""
Pointer to the first event of the portion that would be fetched
"""
nextCursor: DailyEventsCursorInput
"""
Events sort order
"""
sort: EventsSortOrder = lastRepetitionTime
"""
Event marks by which events should be filtered
"""
filters: EventsFiltersInput
"""
Search query
"""
search: String
): DailyEventsPortion
"""
Return events that occurred after a certain timestamp
"""
chartData(
"""
How many days we need to fetch for displaying in a chart
"""
days: Int! = 0
"""
User's local timezone offset in minutes
"""
timezoneOffset: Int! = 0
): [ChartDataItem]
"""
Returns number of unread events
"""
unreadCount: Int!
"""
Project notification settings
"""
notifications: [ProjectNotificationsRule]
"""
Event grouping patterns
"""
eventGroupingPatterns: [ProjectEventGroupingPattern]
"""
Rate limits configuration
"""
rateLimitSettings: RateLimitSettings
}
extend type Query {
"""
Returns project info
"""
project("Project id" projectId: ID!): Project @requireUserInWorkspace
}
extend type Mutation {
"""
Create project in given workspace
"""
createProject(
"""
Workspace ID
"""
workspaceId: ID!
"""
Project name
"""
name: String! @validate(notEmpty: true)
"""
Project image
"""
image: Upload @uploadImage
): Project! @requireAdmin
"""
Update project settings
"""
updateProject(
"""
What project to update
"""
id: ID!
"""
Project name
"""
name: String! @validate(notEmpty: true)
"""
Project description
"""
description: String
"""
Project image
"""
image: Upload @uploadImage
"""
Rate limits configuration
"""
rateLimitSettings: RateLimitSettingsInput
): Project! @requireAdmin
"""
Update project rate limits settings
"""
updateProjectRateLimits(
"""
What project to update
"""
id: ID!
"""
Rate limits configuration. Pass null to remove rate limits.
"""
rateLimitSettings: RateLimitSettingsInput
): Project! @requireAdmin
"""
Generates new project integration token by id
"""
generateNewIntegrationToken(
"""
What project to regenerate integration token
"""
id: ID!
): UpdateProjectResponse! @requireAdmin
"""
Remove project
"""
removeProject(
"What project to remove"
projectId: ID!
): Boolean! @requireAdmin
"""
Updates user's visit time on project
"""
updateLastProjectVisit(
"""
project ID
"""
projectId: ID!
): DateTime! @requireUserInWorkspace
}
input EventsFilter {
"""
Search query string. Only alphanumeric characters, spaces, and some special characters are allowed.
Max length: 100 characters
"""
search: String
}
`;