@@ -1757,6 +1757,11 @@ enum CheckConclusionState {
1757
1757
"""
1758
1758
STALE
1759
1759
1760
+ """
1761
+ The check suite or run has failed at startup.
1762
+ """
1763
+ STARTUP_FAILURE
1764
+
1760
1765
"""
1761
1766
The check suite or run has succeeded.
1762
1767
"""
@@ -6584,6 +6589,11 @@ enum DeploymentState {
6584
6589
The deployment has queued
6585
6590
"""
6586
6591
QUEUED
6592
+
6593
+ """
6594
+ The deployment is waiting.
6595
+ """
6596
+ WAITING
6587
6597
}
6588
6598
6589
6599
"""
@@ -10836,6 +10846,11 @@ type Issue implements Assignable & Closable & Comment & Labelable & Lockable & N
10836
10846
Returns the last _n_ elements from the list.
10837
10847
"""
10838
10848
last: Int
10849
+
10850
+ """
10851
+ Ordering options for issue comments returned from the connection.
10852
+ """
10853
+ orderBy: IssueCommentOrder
10839
10854
): IssueCommentConnection!
10840
10855
10841
10856
"""
@@ -11427,6 +11442,31 @@ type IssueCommentEdge {
11427
11442
node: IssueComment
11428
11443
}
11429
11444
11445
+ """
11446
+ Ways in which lists of issue comments can be ordered upon return.
11447
+ """
11448
+ input IssueCommentOrder {
11449
+ """
11450
+ The direction in which to order issue comments by the specified field.
11451
+ """
11452
+ direction: OrderDirection!
11453
+
11454
+ """
11455
+ The field in which to order issue comments by.
11456
+ """
11457
+ field: IssueCommentOrderField!
11458
+ }
11459
+
11460
+ """
11461
+ Properties by which issue comment connections can be ordered.
11462
+ """
11463
+ enum IssueCommentOrderField {
11464
+ """
11465
+ Order issue comments by update time
11466
+ """
11467
+ UPDATED_AT
11468
+ }
11469
+
11430
11470
"""
11431
11471
The connection type for Issue.
11432
11472
"""
@@ -12434,12 +12474,12 @@ input LockLockableInput {
12434
12474
clientMutationId: String
12435
12475
12436
12476
"""
12437
- A reason for why the issue or pull request will be locked.
12477
+ A reason for why the item will be locked.
12438
12478
"""
12439
12479
lockReason: LockReason
12440
12480
12441
12481
"""
12442
- ID of the issue or pull request to be locked.
12482
+ ID of the item to be locked.
12443
12483
"""
12444
12484
lockableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Lockable")
12445
12485
}
@@ -20277,6 +20317,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
20277
20317
Returns the last _n_ elements from the list.
20278
20318
"""
20279
20319
last: Int
20320
+
20321
+ """
20322
+ Ordering options for issue comments returned from the connection.
20323
+ """
20324
+ orderBy: IssueCommentOrder
20280
20325
): IssueCommentConnection!
20281
20326
20282
20327
"""
@@ -29978,7 +30023,7 @@ type Sponsorship implements Node {
29978
30023
sponsor: User @deprecated(reason: "`Sponsorship.sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead. Removal on 2020-10-01 UTC.")
29979
30024
29980
30025
"""
29981
- The user or organization that is sponsoring. Returns null if the sponsorship is private .
30026
+ The user or organization that is sponsoring, if you have permission to view them .
29982
30027
"""
29983
30028
sponsorEntity: Sponsor
29984
30029
@@ -33172,7 +33217,7 @@ input UnlockLockableInput {
33172
33217
clientMutationId: String
33173
33218
33174
33219
"""
33175
- ID of the issue or pull request to be unlocked.
33220
+ ID of the item to be unlocked.
33176
33221
"""
33177
33222
lockableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Lockable")
33178
33223
}
@@ -35489,6 +35534,11 @@ type User implements Actor & Node & ProfileOwner & ProjectOwner & RepositoryOwne
35489
35534
Returns the last _n_ elements from the list.
35490
35535
"""
35491
35536
last: Int
35537
+
35538
+ """
35539
+ Ordering options for issue comments returned from the connection.
35540
+ """
35541
+ orderBy: IssueCommentOrder
35492
35542
): IssueCommentConnection!
35493
35543
35494
35544
"""
0 commit comments