@@ -12055,6 +12055,11 @@ type Issue implements Assignable & Closable & Comment & Labelable & Lockable & N
1205512055 """
1205612056 includesCreatedEdit: Boolean!
1205712057
12058+ """
12059+ Indicates whether or not this issue is currently pinned to the repository issues list
12060+ """
12061+ isPinned: Boolean
12062+
1205812063 """
1205912064 Is this issue read by the viewer
1206012065 """
@@ -16057,7 +16062,7 @@ type Mutation {
1605716062 Parameters for PinIssue
1605816063 """
1605916064 input: PinIssueInput!
16060- ): PinIssuePayload @preview(toggledBy: "elektra-preview")
16065+ ): PinIssuePayload
1606116066
1606216067 """
1606316068 Regenerates the identity provider recovery codes for an enterprise
@@ -16357,7 +16362,7 @@ type Mutation {
1635716362 Parameters for UnpinIssue
1635816363 """
1635916364 input: UnpinIssueInput!
16360- ): UnpinIssuePayload @preview(toggledBy: "elektra-preview")
16365+ ): UnpinIssuePayload
1636116366
1636216367 """
1636316368 Marks a review thread as unresolved.
@@ -21992,7 +21997,7 @@ type PinnedEvent implements Node {
2199221997"""
2199321998A Pinned Issue is a issue pinned to a repository's index page.
2199421999"""
21995- type PinnedIssue implements Node @preview(toggledBy: "elektra-preview") {
22000+ type PinnedIssue implements Node {
2199622001 """
2199722002 Identifies the primary key from the database.
2199822003 """
@@ -22018,7 +22023,7 @@ type PinnedIssue implements Node @preview(toggledBy: "elektra-preview") {
2201822023"""
2201922024The connection type for PinnedIssue.
2202022025"""
22021- type PinnedIssueConnection @preview(toggledBy: "elektra-preview") {
22026+ type PinnedIssueConnection {
2202222027 """
2202322028 A list of edges.
2202422029 """
@@ -22043,7 +22048,7 @@ type PinnedIssueConnection @preview(toggledBy: "elektra-preview") {
2204322048"""
2204422049An edge in a connection.
2204522050"""
22046- type PinnedIssueEdge @preview(toggledBy: "elektra-preview") {
22051+ type PinnedIssueEdge {
2204722052 """
2204822053 A cursor for use in pagination.
2204922054 """
@@ -30883,7 +30888,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
3088330888 Returns the last _n_ elements from the list.
3088430889 """
3088530890 last: Int
30886- ): PinnedIssueConnection @preview(toggledBy: "elektra-preview")
30891+ ): PinnedIssueConnection
3088730892
3088830893 """
3088930894 The primary language of the repository's code.
@@ -41118,6 +41123,11 @@ enum UserStatusOrderField {
4111841123A domain that can be verified for an organization or an enterprise.
4111941124"""
4112041125type VerifiableDomain implements Node {
41126+ """
41127+ Identifies the date and time when the object was created.
41128+ """
41129+ createdAt: DateTime!
41130+
4112141131 """
4112241132 Identifies the primary key from the database.
4112341133 """
@@ -41169,6 +41179,11 @@ type VerifiableDomain implements Node {
4116941179 """
4117041180 tokenExpirationTime: DateTime
4117141181
41182+ """
41183+ Identifies the date and time when the object was last updated.
41184+ """
41185+ updatedAt: DateTime!
41186+
4117241187 """
4117341188 The current verification token for the domain.
4117441189 """
@@ -41234,6 +41249,11 @@ input VerifiableDomainOrder {
4123441249Properties by which verifiable domain connections can be ordered.
4123541250"""
4123641251enum VerifiableDomainOrderField {
41252+ """
41253+ Order verifiable domains by their creation date.
41254+ """
41255+ CREATED_AT
41256+
4123741257 """
4123841258 Order verifiable domains by the domain name.
4123941259 """
0 commit comments