@@ -1757,6 +1757,11 @@ enum CheckConclusionState {
17571757 """
17581758 STALE
17591759
1760+ """
1761+ The check suite or run has failed at startup.
1762+ """
1763+ STARTUP_FAILURE
1764+
17601765 """
17611766 The check suite or run has succeeded.
17621767 """
@@ -6584,6 +6589,11 @@ enum DeploymentState {
65846589 The deployment has queued
65856590 """
65866591 QUEUED
6592+
6593+ """
6594+ The deployment is waiting.
6595+ """
6596+ WAITING
65876597}
65886598
65896599"""
@@ -10836,6 +10846,11 @@ type Issue implements Assignable & Closable & Comment & Labelable & Lockable & N
1083610846 Returns the last _n_ elements from the list.
1083710847 """
1083810848 last: Int
10849+
10850+ """
10851+ Ordering options for issue comments returned from the connection.
10852+ """
10853+ orderBy: IssueCommentOrder
1083910854 ): IssueCommentConnection!
1084010855
1084110856 """
@@ -11427,6 +11442,31 @@ type IssueCommentEdge {
1142711442 node: IssueComment
1142811443}
1142911444
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+
1143011470"""
1143111471The connection type for Issue.
1143211472"""
@@ -12434,12 +12474,12 @@ input LockLockableInput {
1243412474 clientMutationId: String
1243512475
1243612476 """
12437- A reason for why the issue or pull request will be locked.
12477+ A reason for why the item will be locked.
1243812478 """
1243912479 lockReason: LockReason
1244012480
1244112481 """
12442- ID of the issue or pull request to be locked.
12482+ ID of the item to be locked.
1244312483 """
1244412484 lockableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Lockable")
1244512485}
@@ -20277,6 +20317,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
2027720317 Returns the last _n_ elements from the list.
2027820318 """
2027920319 last: Int
20320+
20321+ """
20322+ Ordering options for issue comments returned from the connection.
20323+ """
20324+ orderBy: IssueCommentOrder
2028020325 ): IssueCommentConnection!
2028120326
2028220327 """
@@ -29978,7 +30023,7 @@ type Sponsorship implements Node {
2997830023 sponsor: User @deprecated(reason: "`Sponsorship.sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead. Removal on 2020-10-01 UTC.")
2997930024
2998030025 """
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 .
2998230027 """
2998330028 sponsorEntity: Sponsor
2998430029
@@ -33172,7 +33217,7 @@ input UnlockLockableInput {
3317233217 clientMutationId: String
3317333218
3317433219 """
33175- ID of the issue or pull request to be unlocked.
33220+ ID of the item to be unlocked.
3317633221 """
3317733222 lockableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Lockable")
3317833223}
@@ -35489,6 +35534,11 @@ type User implements Actor & Node & ProfileOwner & ProjectOwner & RepositoryOwne
3548935534 Returns the last _n_ elements from the list.
3549035535 """
3549135536 last: Int
35537+
35538+ """
35539+ Ordering options for issue comments returned from the connection.
35540+ """
35541+ orderBy: IssueCommentOrder
3549235542 ): IssueCommentConnection!
3549335543
3549435544 """
0 commit comments