This repository was archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.graphql
More file actions
10801 lines (10146 loc) · 351 KB
/
schema.graphql
File metadata and controls
10801 lines (10146 loc) · 351 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
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
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file was generated based on ".graphqlconfig". Do not edit manually.
schema {
query: Query
mutation: Mutation
}
interface AlertManagementIntegration {
"Whether the endpoint is currently accepting alerts"
active: Boolean
"URL at which Prometheus metrics can be queried to populate the metrics dashboard"
apiUrl: String
"ID of the integration"
id: ID!
"Name of the integration"
name: String
"Token used to authenticate alert notification requests"
token: String
"Type of integration"
type: AlertManagementIntegrationType!
"Endpoint which accepts alert notifications"
url: String
}
interface CurrentUserTodos {
"Todos for the current user"
currentUserTodos(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int,
"State of the todos"
state: TodoStateEnum
): TodoConnection!
}
interface DesignFields {
"The diff refs for this design"
diffRefs: DiffRefs!
"How this design was changed in the current version"
event: DesignVersionEvent!
"The filename of the design"
filename: String!
"The full path to the design file"
fullPath: String!
"The ID of this design"
id: ID!
"The URL of the full-sized image"
image: String!
"The URL of the design resized to fit within the bounds of 432x230. This will be `null` if the image has not been generated"
imageV432x230: String
"The issue the design belongs to"
issue: Issue!
"The total count of user-created notes for this design"
notesCount: Int!
"The project the design belongs to"
project: Project!
}
interface Entry {
"Flat path of the entry"
flatPath: String!
"ID of the entry"
id: ID!
"Name of the entry"
name: String!
"Path of the entry"
path: String!
"Last commit sha for the entry"
sha: String!
"Type of tree entry"
type: EntryType!
}
interface MemberInterface {
"GitLab::Access level"
accessLevel: AccessLevel
"Date and time the membership was created"
createdAt: Time
"User that authorized membership"
createdBy: User
"Date and time the membership expires"
expiresAt: Time
"ID of the member"
id: ID!
"Date and time the membership was last updated"
updatedAt: Time
"User that is associated with the member object"
user: User!
}
interface Noteable {
"All discussions on this noteable"
discussions(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): DiscussionConnection!
"All notes on this noteable"
notes(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): NoteConnection!
}
interface ResolvableInterface {
"Indicates if the object can be resolved"
resolvable: Boolean!
"Indicates if the object is resolved"
resolved: Boolean!
"Timestamp of when the object was resolved"
resolvedAt: Time
"User who resolved the object"
resolvedBy: User
}
interface Service {
"Indicates if the service is active"
active: Boolean
"Class name of the service"
type: String
}
interface TimeboxBurnupTimeSeriesInterface {
"Daily scope and completed totals for burnup charts"
burnupTimeSeries: [BurnupChartDailyTotals!]
}
"Represents a vulnerability location. The fields with data will depend on the vulnerability report type"
union VulnerabilityLocation = VulnerabilityLocationContainerScanning | VulnerabilityLocationCoverageFuzzing | VulnerabilityLocationDast | VulnerabilityLocationDependencyScanning | VulnerabilityLocationSast | VulnerabilityLocationSecretDetection
"Represents the access level of a relationship between a User and object that it is related to"
type AccessLevel {
"Integer representation of access level"
integerValue: Int
"String representation of access level"
stringValue: AccessLevelEnum
}
"Autogenerated return type of AddAwardEmoji"
type AddAwardEmojiPayload {
"The award emoji after mutation"
awardEmoji: AwardEmoji
"A unique identifier for the client performing the mutation."
clientMutationId: String
"Errors encountered during execution of the mutation."
errors: [String!]!
}
"Autogenerated return type of AddProjectToSecurityDashboard"
type AddProjectToSecurityDashboardPayload {
"A unique identifier for the client performing the mutation."
clientMutationId: String
"Errors encountered during execution of the mutation."
errors: [String!]!
"Project that was added to the Instance Security Dashboard"
project: Project
}
"Autogenerated return type of AdminSidekiqQueuesDeleteJobs"
type AdminSidekiqQueuesDeleteJobsPayload {
"A unique identifier for the client performing the mutation."
clientMutationId: String
"Errors encountered during execution of the mutation."
errors: [String!]!
"Information about the status of the deletion request"
result: DeleteJobsResponse
}
"Describes an alert from the project's Alert Management"
type AlertManagementAlert implements Noteable {
"Assignees of the alert"
assignees(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): UserConnection
"Timestamp the alert was created"
createdAt: Time
"Description of the alert"
description: String
"Alert details"
details: JSON
"The URL of the alert detail page"
detailsUrl: String!
"All discussions on this noteable"
discussions(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): DiscussionConnection!
"Timestamp the alert ended"
endedAt: Time
"Environment for the alert"
environment: Environment
"Number of events of this alert"
eventCount: Int
"List of hosts the alert came from"
hosts: [String!]
"Internal ID of the alert"
iid: ID!
"Internal ID of the GitLab issue attached to the alert"
issueIid: ID
"URL for metrics embed for the alert"
metricsDashboardUrl: String
"Monitoring tool the alert came from"
monitoringTool: String
"All notes on this noteable"
notes(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): NoteConnection!
"The alert condition for Prometheus"
prometheusAlert: PrometheusAlert
"Runbook for the alert as defined in alert details"
runbook: String
"Service the alert came from"
service: String
"Severity of the alert"
severity: AlertManagementSeverity
"Timestamp the alert was raised"
startedAt: Time
"Status of the alert"
status: AlertManagementStatus
"Title of the alert"
title: String
"Todos of the current user for the alert"
todos(
"The action to be filtered"
action: [TodoActionEnum!],
"Returns the elements in the list that come after the specified cursor."
after: String,
"The ID of an author"
authorId: [ID!],
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"The ID of a group"
groupId: [ID!],
"Returns the last _n_ elements from the list."
last: Int,
"The ID of a project"
projectId: [ID!],
"The state of the todo"
state: [TodoStateEnum!],
"The type of the todo"
type: [TodoTargetEnum!]
): TodoConnection
"Timestamp the alert was last updated"
updatedAt: Time
}
"The connection type for AlertManagementAlert."
type AlertManagementAlertConnection {
"A list of edges."
edges: [AlertManagementAlertEdge]
"A list of nodes."
nodes: [AlertManagementAlert]
"Information to aid in pagination."
pageInfo: PageInfo!
}
"An edge in a connection."
type AlertManagementAlertEdge {
"A cursor for use in pagination."
cursor: String!
"The item at the end of the edge."
node: AlertManagementAlert
}
"Represents total number of alerts for the represented categories"
type AlertManagementAlertStatusCountsType {
"Number of alerts with status ACKNOWLEDGED for the project"
acknowledged: Int
"Total number of alerts for the project"
all: Int
"Number of alerts with status IGNORED for the project"
ignored: Int
"Number of alerts with status TRIGGERED or ACKNOWLEDGED for the project"
open: Int
"Number of alerts with status RESOLVED for the project"
resolved: Int
"Number of alerts with status TRIGGERED for the project"
triggered: Int
}
"An endpoint and credentials used to accept alerts for a project"
type AlertManagementHttpIntegration implements AlertManagementIntegration {
"Whether the endpoint is currently accepting alerts"
active: Boolean
"URL at which Prometheus metrics can be queried to populate the metrics dashboard"
apiUrl: String
"ID of the integration"
id: ID!
"Name of the integration"
name: String
"Token used to authenticate alert notification requests"
token: String
"Type of integration"
type: AlertManagementIntegrationType!
"Endpoint which accepts alert notifications"
url: String
}
"The connection type for AlertManagementIntegration."
type AlertManagementIntegrationConnection {
"A list of edges."
edges: [AlertManagementIntegrationEdge]
"A list of nodes."
nodes: [AlertManagementIntegration]
"Information to aid in pagination."
pageInfo: PageInfo!
}
"An edge in a connection."
type AlertManagementIntegrationEdge {
"A cursor for use in pagination."
cursor: String!
"The item at the end of the edge."
node: AlertManagementIntegration
}
"An endpoint and credentials used to accept Prometheus alerts for a project"
type AlertManagementPrometheusIntegration implements AlertManagementIntegration {
"Whether the endpoint is currently accepting alerts"
active: Boolean
"URL at which Prometheus metrics can be queried to populate the metrics dashboard"
apiUrl: String
"ID of the integration"
id: ID!
"Name of the integration"
name: String
"Token used to authenticate alert notification requests"
token: String
"Type of integration"
type: AlertManagementIntegrationType!
"Endpoint which accepts alert notifications"
url: String
}
"Autogenerated return type of AlertSetAssignees"
type AlertSetAssigneesPayload {
"The alert after mutation"
alert: AlertManagementAlert
"A unique identifier for the client performing the mutation."
clientMutationId: String
"Errors encountered during execution of the mutation."
errors: [String!]!
"The issue created after mutation"
issue: Issue
"The todo after mutation"
todo: Todo
}
"Autogenerated return type of AlertTodoCreate"
type AlertTodoCreatePayload {
"The alert after mutation"
alert: AlertManagementAlert
"A unique identifier for the client performing the mutation."
clientMutationId: String
"Errors encountered during execution of the mutation."
errors: [String!]!
"The issue created after mutation"
issue: Issue
"The todo after mutation"
todo: Todo
}
"An emoji awarded by a user"
type AwardEmoji {
"The emoji description"
description: String!
"The emoji as an icon"
emoji: String!
"The emoji name"
name: String!
"The emoji in unicode"
unicode: String!
"The unicode version for this emoji"
unicodeVersion: String!
"The user who awarded the emoji"
user: User!
}
"Autogenerated return type of AwardEmojiAdd"
type AwardEmojiAddPayload {
"The award emoji after mutation"
awardEmoji: AwardEmoji
"A unique identifier for the client performing the mutation."
clientMutationId: String
"Errors encountered during execution of the mutation."
errors: [String!]!
}
"Autogenerated return type of AwardEmojiRemove"
type AwardEmojiRemovePayload {
"The award emoji after mutation"
awardEmoji: AwardEmoji
"A unique identifier for the client performing the mutation."
clientMutationId: String
"Errors encountered during execution of the mutation."
errors: [String!]!
}
"Autogenerated return type of AwardEmojiToggle"
type AwardEmojiTogglePayload {
"The award emoji after mutation"
awardEmoji: AwardEmoji
"A unique identifier for the client performing the mutation."
clientMutationId: String
"Errors encountered during execution of the mutation."
errors: [String!]!
"Indicates the status of the emoji. True if the toggle awarded the emoji, and false if the toggle removed the emoji."
toggledOn: Boolean!
}
type BaseService implements Service {
"Indicates if the service is active"
active: Boolean
"Class name of the service"
type: String
}
type Blob implements Entry {
"Flat path of the entry"
flatPath: String!
"ID of the entry"
id: ID!
"LFS ID of the blob"
lfsOid: String
"Blob mode in numeric format"
mode: String
"Name of the entry"
name: String!
"Path of the entry"
path: String!
"Last commit sha for the entry"
sha: String!
"Type of tree entry"
type: EntryType!
"Web path of the blob"
webPath: String
"Web URL of the blob"
webUrl: String
}
"The connection type for Blob."
type BlobConnection {
"A list of edges."
edges: [BlobEdge]
"A list of nodes."
nodes: [Blob]
"Information to aid in pagination."
pageInfo: PageInfo!
}
"An edge in a connection."
type BlobEdge {
"A cursor for use in pagination."
cursor: String!
"The item at the end of the edge."
node: Blob
}
"Represents a project or group board"
type Board {
"The board assignee."
assignee: User
"Epics associated with board issues."
epics(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Filters applied when selecting issues on the board"
issueFilters: BoardIssueInput,
"Returns the last _n_ elements from the list."
last: Int
): BoardEpicConnection
"Whether or not backlog list is hidden."
hideBacklogList: Boolean
"Whether or not closed list is hidden."
hideClosedList: Boolean
"ID (global ID) of the board"
id: ID!
"Labels of the board"
labels(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): LabelConnection
"Lists of the board"
lists(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Find a list by its global ID"
id: ListID,
"Filters applied when getting issue metadata in the board list"
issueFilters: BoardIssueInput,
"Returns the last _n_ elements from the list."
last: Int
): BoardListConnection
"The board milestone."
milestone: Milestone
"Name of the board"
name: String
"Weight of the board."
weight: Int
}
"The connection type for Board."
type BoardConnection {
"A list of edges."
edges: [BoardEdge]
"A list of nodes."
nodes: [Board]
"Information to aid in pagination."
pageInfo: PageInfo!
}
"An edge in a connection."
type BoardEdge {
"A cursor for use in pagination."
cursor: String!
"The item at the end of the edge."
node: Board
}
"Represents an epic on an issue board"
type BoardEpic implements CurrentUserTodos & Noteable {
"Author of the epic"
author: User!
"Children (sub-epics) of the epic"
children(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Filter epics by author"
authorUsername: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"List items overlapping a time frame defined by startDate..endDate (if one date is provided, both must be present). Deprecated in 13.5: Use timeframe.end"
endDate: Time,
"Returns the first _n_ elements from the list."
first: Int,
"IID of the epic, e.g., \"1\""
iid: ID,
"Filter epics by iid for autocomplete"
iidStartsWith: String,
"List of IIDs of epics, e.g., [1, 2]"
iids: [ID!],
"Filter epics by labels"
labelName: [String!],
"Returns the last _n_ elements from the list."
last: Int,
"Filter epics by milestone title, computed from epic's issues"
milestoneTitle: String,
"Search query for epic title or description"
search: String,
"List epics by sort order"
sort: EpicSort,
"List items overlapping a time frame defined by startDate..endDate (if one date is provided, both must be present). Deprecated in 13.5: Use timeframe.start"
startDate: Time,
"Filter epics by state"
state: EpicState,
"List items overlapping the given timeframe"
timeframe: Timeframe
): EpicConnection
"Timestamp of when the epic was closed"
closedAt: Time
"Indicates if the epic is confidential"
confidential: Boolean
"Timestamp of when the epic was created"
createdAt: Time
"Todos for the current user"
currentUserTodos(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int,
"State of the todos"
state: TodoStateEnum
): TodoConnection!
"Number of open and closed descendant epics and issues"
descendantCounts: EpicDescendantCount
"Total weight of open and closed issues in the epic and its descendants"
descendantWeightSum: EpicDescendantWeights
"Description of the epic"
description: String
"All discussions on this noteable"
discussions(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): DiscussionConnection!
"Number of downvotes the epic has received"
downvotes: Int!
"Due date of the epic"
dueDate: Time
"Fixed due date of the epic"
dueDateFixed: Time
"Inherited due date of the epic from milestones"
dueDateFromMilestones: Time
"Indicates if the due date has been manually set"
dueDateIsFixed: Boolean
"Group to which the epic belongs"
group: Group!
"Indicates if the epic has children"
hasChildren: Boolean!
"Indicates if the epic has direct issues"
hasIssues: Boolean!
"Indicates if the epic has a parent epic"
hasParent: Boolean!
"Current health status of the epic"
healthStatus: EpicHealthStatus
"ID of the epic"
id: ID!
"Internal ID of the epic"
iid: ID!
"A list of issues associated with the epic"
issues(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): EpicIssueConnection
"Labels assigned to the epic"
labels(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): LabelConnection
"All notes on this noteable"
notes(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): NoteConnection!
"Parent epic of the epic"
parent: Epic
"List of participants for the epic"
participants(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): UserConnection
"Internal reference of the epic. Returned in shortened format by default"
reference(
"Indicates if the reference should be returned in full"
full: Boolean = false
): String!
"URI path of the epic-issue relationship"
relationPath: String
"The relative position of the epic in the epic tree"
relativePosition: Int
"Start date of the epic"
startDate: Time
"Fixed start date of the epic"
startDateFixed: Time
"Inherited start date of the epic from milestones"
startDateFromMilestones: Time
"Indicates if the start date has been manually set"
startDateIsFixed: Boolean
"State of the epic"
state: EpicState!
"Indicates the currently logged in user is subscribed to the epic"
subscribed: Boolean!
"Title of the epic"
title: String
"Timestamp of when the epic was updated"
updatedAt: Time
"Number of upvotes the epic has received"
upvotes: Int!
"Permissions for the current user on the resource"
userPermissions: EpicPermissions!
"User preferences for the epic on the issue board"
userPreferences: BoardEpicUserPreferences
"Web path of the epic"
webPath: String!
"Web URL of the epic"
webUrl: String!
}
"The connection type for BoardEpic."
type BoardEpicConnection {
"A list of edges."
edges: [BoardEpicEdge]
"A list of nodes."
nodes: [BoardEpic]
"Information to aid in pagination."
pageInfo: PageInfo!
}
"An edge in a connection."
type BoardEpicEdge {
"A cursor for use in pagination."
cursor: String!
"The item at the end of the edge."
node: BoardEpic
}
"Represents user preferences for a board epic"
type BoardEpicUserPreferences {
"Indicates epic should be displayed as collapsed"
collapsed: Boolean!
}
"Represents a list for an issue board"
type BoardList {
"Assignee in the list"
assignee: User
"Indicates if list is collapsed for this user"
collapsed: Boolean
"ID (global ID) of the list"
id: ID!
"Board issues"
issues(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Filters applied when selecting issues in the board list"
filters: BoardIssueInput,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): IssueConnection
"Count of issues in the list"
issuesCount: Int
"Label of the list"
label: Label
"The current limit metric for the list"
limitMetric: ListLimitMetric
"Type of the list"
listType: String!
"Maximum number of issues in the list"
maxIssueCount: Int
"Maximum weight of issues in the list"
maxIssueWeight: Int
"Milestone of the list"
milestone: Milestone
"Position of list within the board"
position: Int
"Title of the list"
title: String!
"Total weight of all issues in the list"
totalWeight: Int
}
"The connection type for BoardList."
type BoardListConnection {
"A list of edges."
edges: [BoardListEdge]
"A list of nodes."
nodes: [BoardList]
"Information to aid in pagination."
pageInfo: PageInfo!
}
"Autogenerated return type of BoardListCreate"
type BoardListCreatePayload {
"A unique identifier for the client performing the mutation."
clientMutationId: String
"Errors encountered during execution of the mutation."
errors: [String!]!
"List of the issue board"
list: BoardList
}
"An edge in a connection."
type BoardListEdge {
"A cursor for use in pagination."
cursor: String!
"The item at the end of the edge."
node: BoardList
}
"Autogenerated return type of BoardListUpdateLimitMetrics"
type BoardListUpdateLimitMetricsPayload {
"A unique identifier for the client performing the mutation."
clientMutationId: String
"Errors encountered during execution of the mutation."
errors: [String!]!
"The updated list"
list: BoardList
}
type Branch {
"Commit for the branch"
commit: Commit
"Name of the branch"
name: String!
}
"Represents the total number of issues and their weights for a particular day"
type BurnupChartDailyTotals {
"Number of closed issues as of this day"
completedCount: Int!
"Total weight of closed issues as of this day"
completedWeight: Int!
"Date for burnup totals"
date: ISO8601Date!
"Number of issues as of this day"
scopeCount: Int!
"Total weight of issues as of this day"
scopeWeight: Int!
}
type CiGroup {
"Detailed status of the group"
detailedStatus: DetailedStatus
"Jobs in group"
jobs(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): CiJobConnection
"Name of the job group"
name: String
"Size of the group"
size: Int
}
"The connection type for CiGroup."
type CiGroupConnection {
"A list of edges."
edges: [CiGroupEdge]
"A list of nodes."
nodes: [CiGroup]
"Information to aid in pagination."
pageInfo: PageInfo!
}
"An edge in a connection."
type CiGroupEdge {
"A cursor for use in pagination."
cursor: String!
"The item at the end of the edge."
node: CiGroup
}
type CiJob {
"Detailed status of the job"
detailedStatus: DetailedStatus
"Name of the job"
name: String
"Builds that must complete before the jobs run"
needs(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): CiJobConnection
"Schedule for the build"
scheduledAt: Time
}
"The connection type for CiJob."
type CiJobConnection {
"A list of edges."
edges: [CiJobEdge]
"A list of nodes."
nodes: [CiJob]
"Information to aid in pagination."
pageInfo: PageInfo!
}
"An edge in a connection."
type CiJobEdge {
"A cursor for use in pagination."
cursor: String!
"The item at the end of the edge."
node: CiJob
}
type CiStage {
"Detailed status of the stage"
detailedStatus: DetailedStatus
"Group of jobs for the stage"
groups(
"Returns the elements in the list that come after the specified cursor."
after: String,
"Returns the elements in the list that come before the specified cursor."
before: String,
"Returns the first _n_ elements from the list."
first: Int,
"Returns the last _n_ elements from the list."
last: Int
): CiGroupConnection
"Name of the stage"
name: String
}
"The connection type for CiStage."
type CiStageConnection {
"A list of edges."
edges: [CiStageEdge]
"A list of nodes."
nodes: [CiStage]
"Information to aid in pagination."
pageInfo: PageInfo!
}
"An edge in a connection."
type CiStageEdge {
"A cursor for use in pagination."
cursor: String!
"The item at the end of the edge."
node: CiStage
}
type ClusterAgent {
"Timestamp the cluster agent was created"
createdAt: Time
"ID of the cluster agent"
id: ID!
"Name of the cluster agent"
name: String
"The project this cluster agent is associated with"
project: Project