@@ -386,6 +386,46 @@ type AddAssigneesToAssignablePayload {
386
386
clientMutationId: String
387
387
}
388
388
389
+ """
390
+ Autogenerated input type of AddBlockedBy
391
+ """
392
+ input AddBlockedByInput {
393
+ """
394
+ The ID of the issue that blocks the given issue.
395
+ """
396
+ blockingIssueId: ID! @possibleTypes(concreteTypes: ["Issue"])
397
+
398
+ """
399
+ A unique identifier for the client performing the mutation.
400
+ """
401
+ clientMutationId: String
402
+
403
+ """
404
+ The ID of the issue to be blocked.
405
+ """
406
+ issueId: ID! @possibleTypes(concreteTypes: ["Issue"])
407
+ }
408
+
409
+ """
410
+ Autogenerated return type of AddBlockedBy.
411
+ """
412
+ type AddBlockedByPayload {
413
+ """
414
+ The issue that is blocking the given issue.
415
+ """
416
+ blockingIssue: Issue
417
+
418
+ """
419
+ A unique identifier for the client performing the mutation.
420
+ """
421
+ clientMutationId: String
422
+
423
+ """
424
+ The issue that is blocked.
425
+ """
426
+ issue: Issue
427
+ }
428
+
389
429
"""
390
430
Autogenerated input type of AddComment
391
431
"""
@@ -18613,6 +18653,66 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
18613
18653
"""
18614
18654
authorAssociation: CommentAuthorAssociation!
18615
18655
18656
+ """
18657
+ A list of issues that are blocking this issue.
18658
+ """
18659
+ blockedBy(
18660
+ """
18661
+ Returns the elements in the list that come after the specified cursor.
18662
+ """
18663
+ after: String
18664
+
18665
+ """
18666
+ Returns the elements in the list that come before the specified cursor.
18667
+ """
18668
+ before: String
18669
+
18670
+ """
18671
+ Returns the first _n_ elements from the list.
18672
+ """
18673
+ first: Int
18674
+
18675
+ """
18676
+ Returns the last _n_ elements from the list.
18677
+ """
18678
+ last: Int
18679
+
18680
+ """
18681
+ Ordering options for dependencies
18682
+ """
18683
+ orderBy: IssueDependencyOrder = {field: DEPENDENCY_ADDED_AT, direction: DESC}
18684
+ ): IssueConnection!
18685
+
18686
+ """
18687
+ A list of issues that this issue is blocking.
18688
+ """
18689
+ blocking(
18690
+ """
18691
+ Returns the elements in the list that come after the specified cursor.
18692
+ """
18693
+ after: String
18694
+
18695
+ """
18696
+ Returns the elements in the list that come before the specified cursor.
18697
+ """
18698
+ before: String
18699
+
18700
+ """
18701
+ Returns the first _n_ elements from the list.
18702
+ """
18703
+ first: Int
18704
+
18705
+ """
18706
+ Returns the last _n_ elements from the list.
18707
+ """
18708
+ last: Int
18709
+
18710
+ """
18711
+ Ordering options for dependencies
18712
+ """
18713
+ orderBy: IssueDependencyOrder = {field: DEPENDENCY_ADDED_AT, direction: DESC}
18714
+ ): IssueConnection!
18715
+
18616
18716
"""
18617
18717
Identifies the body of the issue.
18618
18718
"""
@@ -18778,6 +18878,11 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
18778
18878
"""
18779
18879
isReadByViewer: Boolean
18780
18880
18881
+ """
18882
+ Summary of the state of an issue's dependencies
18883
+ """
18884
+ issueDependenciesSummary: IssueDependenciesSummary!
18885
+
18781
18886
"""
18782
18887
The issue type for this Issue
18783
18888
"""
@@ -19735,6 +19840,51 @@ type IssueContributionsByRepository {
19735
19840
repository: Repository!
19736
19841
}
19737
19842
19843
+ """
19844
+ Summary of the state of an issue's dependencies
19845
+ """
19846
+ type IssueDependenciesSummary {
19847
+ """
19848
+ Count of issues this issue is blocked by
19849
+ """
19850
+ blockedBy: Int!
19851
+
19852
+ """
19853
+ Count of issues this issue is blocking
19854
+ """
19855
+ blocking: Int!
19856
+ }
19857
+
19858
+ """
19859
+ Ordering options issue dependencies
19860
+ """
19861
+ input IssueDependencyOrder {
19862
+ """
19863
+ The ordering direction.
19864
+ """
19865
+ direction: OrderDirection!
19866
+
19867
+ """
19868
+ The field to order issue dependencies by.
19869
+ """
19870
+ field: IssueDependencyOrderField!
19871
+ }
19872
+
19873
+ """
19874
+ Properties by which issue dependencies can be ordered.
19875
+ """
19876
+ enum IssueDependencyOrderField {
19877
+ """
19878
+ Order issue dependencies by the creation time of the dependent issue
19879
+ """
19880
+ CREATED_AT
19881
+
19882
+ """
19883
+ Order issue dependencies by time of when the dependency relationship was added
19884
+ """
19885
+ DEPENDENCY_ADDED_AT
19886
+ }
19887
+
19738
19888
"""
19739
19889
An edge in a connection.
19740
19890
"""
@@ -20156,6 +20306,11 @@ enum IssueTimelineItemsItemType {
20156
20306
"""
20157
20307
ASSIGNED_EVENT
20158
20308
20309
+ """
20310
+ Represents a 'blocked_by_added' event on a given issue.
20311
+ """
20312
+ BLOCKED_BY_ADDED_EVENT
20313
+
20159
20314
"""
20160
20315
Represents a 'closed' event on any `Closable`.
20161
20316
"""
@@ -24099,6 +24254,16 @@ type Mutation {
24099
24254
input: AddAssigneesToAssignableInput!
24100
24255
): AddAssigneesToAssignablePayload
24101
24256
24257
+ """
24258
+ Adds a 'blocked by' relationship to an issue.
24259
+ """
24260
+ addBlockedBy(
24261
+ """
24262
+ Parameters for AddBlockedBy
24263
+ """
24264
+ input: AddBlockedByInput!
24265
+ ): AddBlockedByPayload
24266
+
24102
24267
"""
24103
24268
Adds a comment to an Issue or Pull Request.
24104
24269
"""
@@ -25494,6 +25659,16 @@ type Mutation {
25494
25659
input: RemoveAssigneesFromAssignableInput!
25495
25660
): RemoveAssigneesFromAssignablePayload
25496
25661
25662
+ """
25663
+ Removes a 'blocked by' relationship from an issue.
25664
+ """
25665
+ removeBlockedBy(
25666
+ """
25667
+ Parameters for RemoveBlockedBy
25668
+ """
25669
+ input: RemoveBlockedByInput!
25670
+ ): RemoveBlockedByPayload
25671
+
25497
25672
"""
25498
25673
Removes an administrator from the enterprise.
25499
25674
"""
@@ -42780,6 +42955,11 @@ enum PullRequestTimelineItemsItemType {
42780
42955
"""
42781
42956
BASE_REF_FORCE_PUSHED_EVENT
42782
42957
42958
+ """
42959
+ Represents a 'blocked_by_added' event on a given issue.
42960
+ """
42961
+ BLOCKED_BY_ADDED_EVENT
42962
+
42783
42963
"""
42784
42964
Represents a 'closed' event on any `Closable`.
42785
42965
"""
@@ -45070,6 +45250,46 @@ type RemoveAssigneesFromAssignablePayload {
45070
45250
clientMutationId: String
45071
45251
}
45072
45252
45253
+ """
45254
+ Autogenerated input type of RemoveBlockedBy
45255
+ """
45256
+ input RemoveBlockedByInput {
45257
+ """
45258
+ The ID of the blocking issue.
45259
+ """
45260
+ blockingIssueId: ID! @possibleTypes(concreteTypes: ["Issue"])
45261
+
45262
+ """
45263
+ A unique identifier for the client performing the mutation.
45264
+ """
45265
+ clientMutationId: String
45266
+
45267
+ """
45268
+ The ID of the blocked issue.
45269
+ """
45270
+ issueId: ID! @possibleTypes(concreteTypes: ["Issue"])
45271
+ }
45272
+
45273
+ """
45274
+ Autogenerated return type of RemoveBlockedBy.
45275
+ """
45276
+ type RemoveBlockedByPayload {
45277
+ """
45278
+ The previously blocking issue.
45279
+ """
45280
+ blockingIssue: Issue
45281
+
45282
+ """
45283
+ A unique identifier for the client performing the mutation.
45284
+ """
45285
+ clientMutationId: String
45286
+
45287
+ """
45288
+ The previously blocked issue.
45289
+ """
45290
+ issue: Issue
45291
+ }
45292
+
45073
45293
"""
45074
45294
Autogenerated input type of RemoveEnterpriseAdmin
45075
45295
"""
0 commit comments