-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitemaker.graphql
580 lines (511 loc) · 11.7 KB
/
kitemaker.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
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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
scalar Date
"""
T-shirt sizing for effort
"""
enum EffortSize {
SMALL
MEDIUM
LARGE
}
"""
T-shirt sizing for impact
"""
enum ImpactSize {
SMALL
MEDIUM
LARGE
}
"""
Different types of integrations, mainly useful for when fetching and displaying [Integration](#integration) and [IntegrationUser](#integrationuser) objects
"""
enum IntegrationType {
GITHUB
FIGMA
TRELLO
SLACK
DISCORD
GITLAB
}
"""
Statuses for [WorkItem](#workitem) objects fall into a few different categories
"""
enum StatusType {
BACKLOG
TODO
IN_PROGRESS
DONE
ARCHIVED
}
"""
The fixed set of time horizons for [Theme](#theme) objects
"""
enum ThemeHorizon {
NOW
NEXT
LATER
ARCHIVED
}
"""
Whether to treat as an include or exclude filter
"""
enum StatusFilterType {
INCLUDE
EXCLUDE
}
"""
Different states that a code review request can be in
"""
enum CodeReviewRequestState {
OPEN
CLOSED
MERGED
LOCKED
}
"""
The top level object describing the user or application's organization
"""
type Organization {
id: ID!
name: String!
spaces: [Space!]!
users: [User!]!
integrations: [Integration!]!
integrationUsers: [IntegrationUser!]!
applications: [Application!]!
updatedAt: Date!
createdAt: Date!
}
type Space {
id: ID!
key: String!
name: String!
labels: [Label!]!
statuses: [Status!]!
private: Boolean!
members: [User!]
updatedAt: Date!
createdAt: Date!
}
type Label {
id: ID!
color: String!
name: String!
updatedAt: Date!
createdAt: Date!
}
type Status {
id: ID!
name: String!
type: StatusType!
default: Boolean!
updatedAt: Date!
createdAt: Date!
}
type User {
id: ID!
username: String!
name: String
avatar: String
guest: Boolean!
deactivated: Boolean!
updatedAt: Date!
createdAt: Date!
}
type Integration {
id: ID!
type: IntegrationType!
domain: String
updatedAt: Date!
createdAt: Date!
}
type IntegrationUser {
id: ID!
type: IntegrationType!
"""
The domain of a particular integration for systems like GitHub enterprise where each customer has a dedicated URL
"""
domain: String
"""
The ID of the user in the external system (such as Slack or GitHub)
"""
externalId: String!
"""
The name of the user in the external system (such as Slack or GitHub)
"""
externalName: String!
updatedAt: Date!
createdAt: Date!
}
"""
Applications represent some service/code/etc that integrates with Kitemaker. You maybe even have one if you're reading these documents
"""
type Application {
id: ID!
name: String!
updatedAt: Date!
createdAt: Date!
}
"""
Actors are entities that do things like create work items, leave comments, etc. They can come in a number of flavors
"""
union Actor = User | Integration | IntegrationUser | Application
"""
Entities are the document-like types, like work items and themes
"""
union Entity = WorkItem | Theme
"""
Comments can be made on either [WorkItem](#workitem) or [Theme](#theme) objects
"""
type Comment {
id: ID!
actor: Actor!
body: String!
"""
Comments in Kitemaker are threaded and the threadId identifies a set of comments in a single thread
"""
threadId: String!
entity: Entity!
updatedAt: Date!
createdAt: Date!
}
type WorkItem {
id: ID!
number: String!
title: String!
actor: Actor!
"""
The description of a work item as a markdown-formatted string
"""
description: String!
status: Status!
"""
Sort is a string that determines where in a particular status column a work item will appear
"""
sort: String!
space: Space!
members: [User!]!
watchers: [User!]!
labels: [Label!]!
comments: [Comment!]!
themes: [Theme!]!
effort: EffortSize
impact: ImpactSize
updatedAt: Date!
createdAt: Date!
}
type Theme {
id: ID!
number: String!
title: String!
actor: Actor!
"""
The description of a theme as a markdown-formatted string
"""
description: String!
"""
Sort is a string that determines where in a particular horizon column a theme will appear
"""
sort: String!
horizon: ThemeHorizon!
workItems: [WorkItem!]!
comments: [Comment!]!
watchers: [User!]!
updatedAt: Date!
createdAt: Date!
color: String!
}
type CodeReviewRequestDetails {
number: String!
url: String!
title: String!
}
type CodeReviewRequestLink {
name: String!
url: String!
}
type CodeReviewRequest {
id: ID!
codeReviewType: IntegrationType!
workItems: [WorkItem!]!
state: CodeReviewRequestState!
details: CodeReviewRequestDetails!
links: [CodeReviewRequestLink!]!
createdAt: Date!
updatedAt: Date!
}
type WorkItemsQueryResult {
workItems: [WorkItem!]!
"""
An opaque string used for paging. Pass this string to the workItems query to iterate through the results a page at a time
"""
cursor: String!
"""
Indicates if more results are available (by requerying workItems, passing the cursor)
"""
hasMore: Boolean!
}
type ThemesQueryResult {
themes: [Theme!]!
"""
An opaque string used for paging. Pass this string to the themes query to iterate through the results a page at a time
"""
cursor: String!
"""
Indicates if more results are available (by requerying themes, passing the cursor)
"""
hasMore: Boolean!
}
type Query {
"""
Fetch the main organization object. Useful for finding out which users, spaces, labels, statuses, etc. are available before fetching and manipulating work items and themes
"""
organization: Organization!
"""
Fetch a space by key (e.g., 'ABC')
"""
spaceByKey(key: String!): Space!
"""
Fetch [WorkItem](#workitem) objects for a particular [Space](#space). This will return at most 50 work items at a time so use the paging facilities to fetch more results
"""
workItems(
spaceId: ID
cursor: String
count: Int
statusFilter: StatusFilter
): WorkItemsQueryResult!
"""
Fetch a single [WorkItem](#workitem) by ID
"""
workItem(id: ID!): WorkItem!
"""
Fetch a single [WorkItem](#workitem) by number (e.g., 'ABC-123')
"""
workItemByNumber(number: String!): WorkItem!
"""
Fetch [Theme](#theme) objects for a particular [Space](#space). This will return at most 50 themes at a time so use the paging facilities to fetch more results
"""
themes(spaceId: ID, cursor: String, count: Int): ThemesQueryResult!
"""
Fetch a single [Theme](#theme) by ID
"""
theme(id: ID!): Theme!
"""
Fetch a single [Theme](#theme) by number (e.g. 'ABC-123')
"""
themeByNumber(number: String): Theme!
"""
Fetch a single [Comment](#comment) by ID
"""
comment(id: ID!): Comment!
"""
Fetch a code review request by URL
"""
codeReviewRequest(url: String!): CodeReviewRequest!
}
input CreateWorkItemInput {
title: String!
"""
The [WorkItem](#workitem) object's description as a markdown-formatted string
"""
description: String
spaceId: ID
statusId: ID
"""
The sort order of the [WorkItem](#workitem). Omitting this parameter will make the work item the first work item in the status column
"""
sort: String
memberIds: [ID!]
watcherIds: [ID!]
labelIds: [ID!]
effort: EffortSize
impact: ImpactSize
}
type CreateWorkItemResult {
workItem: WorkItem!
}
input EditWorkItemInput {
id: ID!
title: String
"""
The [WorkItem](#workitem) object's description as a markdown-formatted string
"""
description: String
statusId: ID
sort: String
effort: EffortSize
impact: ImpactSize
}
type EditWorkItemResult {
workItem: WorkItem!
}
"""
Filter used when requesting work items
"""
input StatusFilter {
type: StatusFilterType!
filter: [StatusType!]!
}
input AddMembersToWorkItemInput {
id: ID!
memberIds: [ID!]!
}
type AddMembersToWorkItemResult {
workItem: WorkItem!
}
input RemoveMembersFromWorkItemInput {
id: ID!
memberIds: [ID!]!
}
type RemoveMembersFromWorkItemResult {
workItem: WorkItem!
}
input AddWatchersToWorkItemInput {
id: ID!
watcherIds: [ID!]!
}
type AddWatchersToWorkItemResult {
workItem: WorkItem!
}
input RemoveWatchersFromWorkItemInput {
id: ID!
watcherIds: [ID!]!
}
type RemoveWatchersFromWorkItemResult {
workItem: WorkItem!
}
input AddLabelsToWorkItemInput {
id: ID!
labelIds: [ID!]!
}
type AddLabelsToWorkItemResult {
workItem: WorkItem!
}
input RemoveLabelsFromWorkItemInput {
id: ID!
labelIds: [ID!]!
}
type RemoveLabelsFromWorkItemResult {
workItem: WorkItem!
}
input CreateCommentOnWorkItemInput {
id: ID!
body: String!
"""
When creating a new comment thread, omit this property. Provide this property to add to an existing thread
"""
threadId: String
}
type CreateCommentOnWorkItemResult {
comment: Comment!
}
input CreateThemeInput {
spaceId: ID!
title: String!
"""
The sort order of the [Theme](#theme). Omitting this parameter will make the theme the first theme in the horizon column
"""
sort: String
"""
The [Theme](#theme) object's description as a markdown-formatted string
"""
description: String
horizon: ThemeHorizon!
workItemIds: [ID!]
watcherIds: [ID!]
}
type CreateThemeResult {
theme: Theme!
}
input EditThemeInput {
id: ID!
title: String
"""
The [Theme](#theme) object's description as a markdown-formatted string
"""
description: String
horizon: ThemeHorizon
}
type EditThemeResult {
theme: Theme!
}
input AddWorkItemsToThemeInput {
id: ID!
workItemIds: [ID!]!
}
type AddWorkItemsToThemeResult {
theme: Theme!
}
input RemoveWorkItemsFromThemeInput {
id: ID!
workItemIds: [ID!]!
}
type RemoveWorkItemsFromThemeResult {
theme: Theme!
}
input AddWatchersToThemeInput {
id: ID!
watcherIds: [ID!]!
}
type AddWatchersToThemeResult {
theme: Theme!
}
input RemoveWatchersFromThemeInput {
id: ID!
watcherIds: [ID!]!
}
type RemoveWatchersFromThemeResult {
theme: Theme!
}
input CreateCommentOnThemeInput {
id: ID!
body: String!
"""
When creating a new comment thread, omit this property. Provide this property to add to an existing thread
"""
threadId: String
}
type CreateCommentOnThemeResult {
comment: Comment!
}
input EditCommentInput {
id: ID!
body: String
}
type EditCommentResult {
comment: Comment!
}
input CodeReviewRequestLinkInput {
name: String!
url: String!
}
input EditCodeReviewRequestInput {
id: ID!
links: [CodeReviewRequestLinkInput!]
}
type EditCodeReviewRequestResult {
codeReviewRequest: CodeReviewRequest!
}
type Mutation {
createWorkItem(input: CreateWorkItemInput!): CreateWorkItemResult!
editWorkItem(input: EditWorkItemInput!): EditWorkItemResult!
addMembersToWorkItem(input: AddMembersToWorkItemInput!): AddMembersToWorkItemResult!
removeMembersFromWorkItem(
input: RemoveMembersFromWorkItemInput!
): RemoveMembersFromWorkItemResult!
addWatchersToWorkItem(input: AddWatchersToWorkItemInput!): AddWatchersToWorkItemResult!
removeWatchersFromWorkItem(
input: RemoveWatchersFromWorkItemInput!
): RemoveWatchersFromWorkItemResult!
addLabelsToWorkItem(input: AddLabelsToWorkItemInput!): AddMembersToWorkItemResult!
removeLabelsFromWorkItem(input: RemoveLabelsFromWorkItemInput!): RemoveLabelsFromWorkItemResult!
createCommentOnWorkItem(input: CreateCommentOnWorkItemInput!): CreateCommentOnWorkItemResult!
createTheme(input: CreateThemeInput!): CreateThemeResult!
editTheme(input: EditThemeInput!): EditThemeResult!
addWatchersToTheme(input: AddWatchersToThemeInput!): AddWatchersToThemeResult!
removeWatchersFromTheme(input: RemoveWatchersFromThemeInput!): RemoveWatchersFromThemeResult!
addWorkItemsToTheme(input: AddWorkItemsToThemeInput!): AddWorkItemsToThemeResult!
removeWorkItemsFromTheme(input: RemoveWorkItemsFromThemeInput!): RemoveWorkItemsFromThemeResult!
createCommentOnTheme(input: CreateCommentOnThemeInput!): CreateCommentOnThemeResult!
editComment(input: EditCommentInput!): EditCommentResult!
editCodeReviewRequest(input: EditCodeReviewRequestInput!): EditCodeReviewRequestResult!
}