-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathevent.ts
522 lines (437 loc) · 6.99 KB
/
event.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
import { gql } from 'apollo-server-express';
export default gql`
"""
Source code line representation
"""
type SourceCodeLine {
"""
Line number
"""
line: Int
"""
Line's content
"""
content: String
}
"""
Release commit
"""
type Commit {
"""
Hash of the commit
"""
hash: String!
"""
Commit author
"""
author: String!
"""
Commit title
"""
title: String!
"""
Commit creation date
"""
date: DateTime!
}
"""
Release data of the corresponding event
"""
type Release {
"""
Release name
"""
releaseName: String! @renameFrom(name: "release")
"""
Release commits
"""
commits: [Commit!]!
}
"""
Event backtrace representation
"""
type EventBacktraceFrame {
"""
Source filepath
"""
file: String
"""
Called line
"""
line: Int
"""
Called column
"""
column: Int
"""
Part of source code file near the called line
"""
sourceCode: [SourceCodeLine]
"""
Function name extracted from current stack frame
"""
function: String
"""
Function arguments extracted from current stack frame
"""
arguments: [String]
}
"""
Event user representation
"""
type EventUser {
"""
Internal user's identifier inside an app
"""
id: ID
"""
User public name
"""
name: String
"""
URL for user's details page
"""
url: String
"""
User's public picture
"""
photo: String
}
"""
Type representing Event payload
"""
type EventPayload {
"""
Event title
"""
title: String!
"""
Event type: TypeError, ReferenceError etc.
"""
type: String
"""
Event timestamp
"""
timestamp: Float!
"""
Event severity level
"""
level: Int
"""
Event stack array from the latest call to the earliest
"""
backtrace: [EventBacktraceFrame]
"""
Additional data about GET request
"""
get: JSONObject
"""
Additional data about POST request
"""
post: JSONObject
"""
HTTP headers
"""
headers: JSONObject
"""
Source code version identifier
"""
release: String
"""
Current authenticated user
"""
user: EventUser
"""
Any additional data of Event
"""
context: EncodedJSON
"""
Custom data provided by project users
"""
addons: EncodedJSON
}
"""
Type representing Event payload. All fields can be omitted if there are no difference with the original
"""
type RepetitionPayload {
"""
Event timestamp. Can be empty if repetition has the same timestamp as original event
"""
timestamp: Float
"""
Event title
"""
title: String
"""
Event type: TypeError, ReferenceError etc.
"""
type: String
"""
Event severity level
"""
level: Int
"""
Event stack array from the latest call to the earliest
"""
backtrace: [EventBacktraceFrame!]
"""
Additional data about GET request
"""
get: JSONObject
"""
Additional data about POST request
"""
post: JSONObject
"""
HTTP headers
"""
headers: JSONObject
"""
Source code version identifier
"""
release: String
"""
Current authenticated user
"""
user: EventUser
"""
Any additional data of Event
"""
context: EncodedJSON
"""
Custom data provided by project users
"""
addons: EncodedJSON
}
"""
Event's repetitions. Make Event unique by repetition's payload
"""
type Repetition {
"""
Standalone repetition ID
"""
id: ID! @renameFrom(name: "_id")
"""
Event's hash
"""
groupHash: String!
"""
Event's payload patch
"""
payload: RepetitionPayload!
}
"""
Possible event marks
"""
enum EventMark {
resolved
starred
ignored
}
"""
Object returned in marks property of event object
"""
type EventMarks {
resolved: Boolean!
starred: Boolean!
ignored: Boolean!
}
"""
Type representing Hawk single Event
"""
type Event {
"""
Event id
"""
id: ID! @renameFrom(name: "_id")
"""
Catcher type
"""
catcherType: String!
"""
Event group hash
"""
groupHash: String!
"""
Event occurrence count
"""
totalCount: Int!
"""
User assigneed to the event
"""
assignee: User
"""
Event payload
"""
payload: EventPayload!
"""
Release data
"""
release: Release
"""
Event concrete repetition
"""
repetition(id: ID): Repetition
"""
Event repetitions
"""
repetitions(skip: Int = 0, limit: Int = 10): [Repetition!]
"""
Array of users who visited event
"""
visitedBy: [User!]
"""
Event label for current user
"""
marks: EventMarks! @default(value: "{}")
"""
How many users catch this error
"""
usersAffected: Int
"""
Return graph of the error rate for the last few days
"""
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!]! @requireAuth
}
"""
Information about event per day
"""
type DailyEventInfo {
"""
Event hash for grouping
"""
groupHash: String!
"""
Event occurrence count
"""
count: Int!
"""
Event occurrence datetime (in unixtime)
"""
groupingTimestamp: Float!
"""
Event's last repetition ID
"""
lastRepetitionId: ID
"""
Last event occurrence timestamp
"""
lastRepetitionTime: Float!
"""
How many users catch this error per day
"""
affectedUsers: Int
}
type Subscription {
"""
Sends new events from all user projects
"""
eventOccurred: Event! @requireAuth
}
"""
Event information per day with these events
"""
type RecentEvents {
"""
Occured events list
"""
events: [Event!]
"""
Information about occurred events per day
"""
dailyInfo: [DailyEventInfo]
}
input UpdateAssigneeInput {
"""
ID of project event is related to
"""
projectId: ID!
"""
ID of the selected event
"""
eventId: ID!
"""
Assignee id to set
"""
assignee: ID!
}
type UpdateAssigneeResponse {
"""
Response status
"""
success: Boolean!
"""
User assigned to the event
"""
record: User!
}
input RemoveAssigneeInput {
"""
ID of project event is related to
"""
projectId: ID!
"""
ID of the selected event
"""
eventId: ID!
}
type RemoveAssigneeResponse {
"""
Response status
"""
success: Boolean!
}
type EventsMutations {
"""
Set an assignee for the selected event
"""
updateAssignee(
input: UpdateAssigneeInput!
): UpdateAssigneeResponse! @requireAuth @requireUserInWorkspace
"""
Remove an assignee from the selected event
"""
removeAssignee(
input: RemoveAssigneeInput!
): RemoveAssigneeResponse! @requireAuth @requireUserInWorkspace
}
extend type Mutation {
"""
Mutation marks event as visited for current user
"""
visitEvent(
project: ID!
id: ID!
): Boolean! @requireAuth
"""
Mutation sets or unsets passed mark to event
"""
toggleEventMark(
"""
ID of project event is related to
"""
project: ID!
"""
EvenID of the event to set the mark
"""
eventId: ID!
"""
Mark to set
"""
mark: EventMark!
): Boolean! @requireAuth
"""
Namespace that contains only mutations related to the events
"""
events: EventsMutations!
}
`;