Branch was updated using the 'autoupdate branch' Actions workflow.
This commit is contained in:
@@ -84,20 +84,6 @@
|
||||
- Mutation.createContentAttachment
|
||||
owning_teams:
|
||||
- '@github/feature-lifecycle'
|
||||
- title: Pinned Issues Preview
|
||||
description: This preview adds support for pinned issues.
|
||||
toggled_by: ':elektra-preview'
|
||||
announcement: null
|
||||
updates: null
|
||||
toggled_on:
|
||||
- Repository.pinnedIssues
|
||||
- PinnedIssue
|
||||
- PinnedIssueEdge
|
||||
- PinnedIssueConnection
|
||||
- Mutation.pinIssue
|
||||
- Mutation.unpinIssue
|
||||
owning_teams:
|
||||
- '@github/pe-pull-requests'
|
||||
- title: Labels Preview
|
||||
description: >-
|
||||
This preview adds support for adding, updating, creating and deleting
|
||||
|
||||
@@ -11314,6 +11314,11 @@ type Issue implements Assignable & Closable & Comment & Labelable & Lockable & N
|
||||
"""
|
||||
includesCreatedEdit: Boolean!
|
||||
|
||||
"""
|
||||
Indicates whether or not this issue is currently pinned to the repository issues list
|
||||
"""
|
||||
isPinned: Boolean
|
||||
|
||||
"""
|
||||
Is this issue read by the viewer
|
||||
"""
|
||||
@@ -14842,7 +14847,7 @@ type Mutation {
|
||||
Parameters for PinIssue
|
||||
"""
|
||||
input: PinIssueInput!
|
||||
): PinIssuePayload @preview(toggledBy: "elektra-preview")
|
||||
): PinIssuePayload
|
||||
|
||||
"""
|
||||
Removes assignees from an assignable object.
|
||||
@@ -15052,7 +15057,7 @@ type Mutation {
|
||||
Parameters for UnpinIssue
|
||||
"""
|
||||
input: UnpinIssueInput!
|
||||
): UnpinIssuePayload @preview(toggledBy: "elektra-preview")
|
||||
): UnpinIssuePayload
|
||||
|
||||
"""
|
||||
Marks a review thread as unresolved.
|
||||
@@ -19993,7 +19998,7 @@ type PinnedEvent implements Node {
|
||||
"""
|
||||
A Pinned Issue is a issue pinned to a repository's index page.
|
||||
"""
|
||||
type PinnedIssue implements Node @preview(toggledBy: "elektra-preview") {
|
||||
type PinnedIssue implements Node {
|
||||
"""
|
||||
Identifies the primary key from the database.
|
||||
"""
|
||||
@@ -20019,7 +20024,7 @@ type PinnedIssue implements Node @preview(toggledBy: "elektra-preview") {
|
||||
"""
|
||||
The connection type for PinnedIssue.
|
||||
"""
|
||||
type PinnedIssueConnection @preview(toggledBy: "elektra-preview") {
|
||||
type PinnedIssueConnection {
|
||||
"""
|
||||
A list of edges.
|
||||
"""
|
||||
@@ -20044,7 +20049,7 @@ type PinnedIssueConnection @preview(toggledBy: "elektra-preview") {
|
||||
"""
|
||||
An edge in a connection.
|
||||
"""
|
||||
type PinnedIssueEdge @preview(toggledBy: "elektra-preview") {
|
||||
type PinnedIssueEdge {
|
||||
"""
|
||||
A cursor for use in pagination.
|
||||
"""
|
||||
@@ -28439,7 +28444,7 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
): PinnedIssueConnection @preview(toggledBy: "elektra-preview")
|
||||
): PinnedIssueConnection
|
||||
|
||||
"""
|
||||
The primary language of the repository's code.
|
||||
@@ -37725,6 +37730,11 @@ enum UserStatusOrderField {
|
||||
A domain that can be verified for an organization or an enterprise.
|
||||
"""
|
||||
type VerifiableDomain implements Node {
|
||||
"""
|
||||
Identifies the date and time when the object was created.
|
||||
"""
|
||||
createdAt: DateTime!
|
||||
|
||||
"""
|
||||
Identifies the primary key from the database.
|
||||
"""
|
||||
@@ -37776,6 +37786,11 @@ type VerifiableDomain implements Node {
|
||||
"""
|
||||
tokenExpirationTime: DateTime
|
||||
|
||||
"""
|
||||
Identifies the date and time when the object was last updated.
|
||||
"""
|
||||
updatedAt: DateTime!
|
||||
|
||||
"""
|
||||
The current verification token for the domain.
|
||||
"""
|
||||
|
||||
@@ -100,20 +100,6 @@
|
||||
- Mutation.createContentAttachment
|
||||
owning_teams:
|
||||
- '@github/feature-lifecycle'
|
||||
- title: Pinned Issues Preview
|
||||
description: This preview adds support for pinned issues.
|
||||
toggled_by: ':elektra-preview'
|
||||
announcement: null
|
||||
updates: null
|
||||
toggled_on:
|
||||
- Repository.pinnedIssues
|
||||
- PinnedIssue
|
||||
- PinnedIssueEdge
|
||||
- PinnedIssueConnection
|
||||
- Mutation.pinIssue
|
||||
- Mutation.unpinIssue
|
||||
owning_teams:
|
||||
- '@github/pe-pull-requests'
|
||||
- title: Labels Preview
|
||||
description: >-
|
||||
This preview adds support for adding, updating, creating and deleting
|
||||
|
||||
@@ -12055,6 +12055,11 @@ type Issue implements Assignable & Closable & Comment & Labelable & Lockable & N
|
||||
"""
|
||||
includesCreatedEdit: Boolean!
|
||||
|
||||
"""
|
||||
Indicates whether or not this issue is currently pinned to the repository issues list
|
||||
"""
|
||||
isPinned: Boolean
|
||||
|
||||
"""
|
||||
Is this issue read by the viewer
|
||||
"""
|
||||
@@ -16057,7 +16062,7 @@ type Mutation {
|
||||
Parameters for PinIssue
|
||||
"""
|
||||
input: PinIssueInput!
|
||||
): PinIssuePayload @preview(toggledBy: "elektra-preview")
|
||||
): PinIssuePayload
|
||||
|
||||
"""
|
||||
Regenerates the identity provider recovery codes for an enterprise
|
||||
@@ -16357,7 +16362,7 @@ type Mutation {
|
||||
Parameters for UnpinIssue
|
||||
"""
|
||||
input: UnpinIssueInput!
|
||||
): UnpinIssuePayload @preview(toggledBy: "elektra-preview")
|
||||
): UnpinIssuePayload
|
||||
|
||||
"""
|
||||
Marks a review thread as unresolved.
|
||||
@@ -21992,7 +21997,7 @@ type PinnedEvent implements Node {
|
||||
"""
|
||||
A Pinned Issue is a issue pinned to a repository's index page.
|
||||
"""
|
||||
type PinnedIssue implements Node @preview(toggledBy: "elektra-preview") {
|
||||
type PinnedIssue implements Node {
|
||||
"""
|
||||
Identifies the primary key from the database.
|
||||
"""
|
||||
@@ -22018,7 +22023,7 @@ type PinnedIssue implements Node @preview(toggledBy: "elektra-preview") {
|
||||
"""
|
||||
The connection type for PinnedIssue.
|
||||
"""
|
||||
type PinnedIssueConnection @preview(toggledBy: "elektra-preview") {
|
||||
type PinnedIssueConnection {
|
||||
"""
|
||||
A list of edges.
|
||||
"""
|
||||
@@ -22043,7 +22048,7 @@ type PinnedIssueConnection @preview(toggledBy: "elektra-preview") {
|
||||
"""
|
||||
An edge in a connection.
|
||||
"""
|
||||
type PinnedIssueEdge @preview(toggledBy: "elektra-preview") {
|
||||
type PinnedIssueEdge {
|
||||
"""
|
||||
A cursor for use in pagination.
|
||||
"""
|
||||
@@ -30883,7 +30888,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
): PinnedIssueConnection @preview(toggledBy: "elektra-preview")
|
||||
): PinnedIssueConnection
|
||||
|
||||
"""
|
||||
The primary language of the repository's code.
|
||||
@@ -41118,6 +41123,11 @@ enum UserStatusOrderField {
|
||||
A domain that can be verified for an organization or an enterprise.
|
||||
"""
|
||||
type VerifiableDomain implements Node {
|
||||
"""
|
||||
Identifies the date and time when the object was created.
|
||||
"""
|
||||
createdAt: DateTime!
|
||||
|
||||
"""
|
||||
Identifies the primary key from the database.
|
||||
"""
|
||||
@@ -41169,6 +41179,11 @@ type VerifiableDomain implements Node {
|
||||
"""
|
||||
tokenExpirationTime: DateTime
|
||||
|
||||
"""
|
||||
Identifies the date and time when the object was last updated.
|
||||
"""
|
||||
updatedAt: DateTime!
|
||||
|
||||
"""
|
||||
The current verification token for the domain.
|
||||
"""
|
||||
@@ -41234,6 +41249,11 @@ input VerifiableDomainOrder {
|
||||
Properties by which verifiable domain connections can be ordered.
|
||||
"""
|
||||
enum VerifiableDomainOrderField {
|
||||
"""
|
||||
Order verifiable domains by their creation date.
|
||||
"""
|
||||
CREATED_AT
|
||||
|
||||
"""
|
||||
Order verifiable domains by the domain name.
|
||||
"""
|
||||
|
||||
@@ -1,4 +1,20 @@
|
||||
[
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
"title": "The GraphQL schema includes these changes:",
|
||||
"changes": [
|
||||
"Field `isPinned` was added to object type `Issue`",
|
||||
"Enum value 'CREATED_AT` was added to enum `VerifiableDomainOrderField'",
|
||||
"Field `createdAt` was added to object type `VerifiableDomain`",
|
||||
"Field `updatedAt` was added to object type `VerifiableDomain`"
|
||||
]
|
||||
}
|
||||
],
|
||||
"previewChanges": [],
|
||||
"upcomingChanges": [],
|
||||
"date": "2021-03-03"
|
||||
},
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -114,24 +114,6 @@
|
||||
"accept_header": "application/vnd.github.corsair-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
|
||||
},
|
||||
{
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
},
|
||||
{
|
||||
"title": "Labels preview",
|
||||
"description": "This preview adds support for adding, updating, creating and deleting labels.",
|
||||
@@ -1181,24 +1163,6 @@
|
||||
"accept_header": "application/vnd.github.corsair-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
|
||||
},
|
||||
{
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
},
|
||||
{
|
||||
"title": "Labels preview",
|
||||
"description": "This preview adds support for adding, updating, creating and deleting labels.",
|
||||
|
||||
@@ -3505,25 +3505,6 @@
|
||||
"id": "pinissue",
|
||||
"href": "/graphql/reference/mutations#pinissue",
|
||||
"description": "<p>Pin an issue to a repository.</p>",
|
||||
"isDeprecated": false,
|
||||
"preview": {
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
},
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
@@ -4624,25 +4605,6 @@
|
||||
"id": "unpinissue",
|
||||
"href": "/graphql/reference/mutations#unpinissue",
|
||||
"description": "<p>Unpin a pinned issue from a repository.</p>",
|
||||
"isDeprecated": false,
|
||||
"preview": {
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
},
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
@@ -20198,6 +20160,14 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "isPinned",
|
||||
"description": "<p>Indicates whether or not this issue is currently pinned to the repository issues list.</p>",
|
||||
"type": "Boolean",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "isReadByViewer",
|
||||
"description": "<p>Is this issue read by the viewer.</p>",
|
||||
@@ -32408,25 +32378,6 @@
|
||||
"id": "pinnedissue",
|
||||
"href": "/graphql/reference/objects#pinnedissue",
|
||||
"description": "<p>A Pinned Issue is a issue pinned to a repository's index page.</p>",
|
||||
"isDeprecated": false,
|
||||
"preview": {
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
},
|
||||
"implements": [
|
||||
{
|
||||
"name": "Node",
|
||||
@@ -32475,25 +32426,6 @@
|
||||
"id": "pinnedissueconnection",
|
||||
"href": "/graphql/reference/objects#pinnedissueconnection",
|
||||
"description": "<p>The connection type for PinnedIssue.</p>",
|
||||
"isDeprecated": false,
|
||||
"preview": {
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
},
|
||||
"fields": [
|
||||
{
|
||||
"name": "edges",
|
||||
@@ -32535,25 +32467,6 @@
|
||||
"id": "pinnedissueedge",
|
||||
"href": "/graphql/reference/objects#pinnedissueedge",
|
||||
"description": "<p>An edge in a connection.</p>",
|
||||
"isDeprecated": false,
|
||||
"preview": {
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
},
|
||||
"fields": [
|
||||
{
|
||||
"name": "cursor",
|
||||
@@ -44735,26 +44648,7 @@
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
}
|
||||
],
|
||||
"isDeprecated": false,
|
||||
"preview": {
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "primaryLanguage",
|
||||
@@ -55986,6 +55880,14 @@
|
||||
}
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"name": "createdAt",
|
||||
"description": "<p>Identifies the date and time when the object was created.</p>",
|
||||
"type": "DateTime!",
|
||||
"id": "datetime",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#datetime"
|
||||
},
|
||||
{
|
||||
"name": "databaseId",
|
||||
"description": "<p>Identifies the primary key from the database.</p>",
|
||||
@@ -56066,6 +55968,14 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#datetime"
|
||||
},
|
||||
{
|
||||
"name": "updatedAt",
|
||||
"description": "<p>Identifies the date and time when the object was last updated.</p>",
|
||||
"type": "DateTime!",
|
||||
"id": "datetime",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#datetime"
|
||||
},
|
||||
{
|
||||
"name": "verificationToken",
|
||||
"description": "<p>The current verification token for the domain.</p>",
|
||||
@@ -62106,6 +62016,10 @@
|
||||
"href": "/graphql/reference/enums#verifiabledomainorderfield",
|
||||
"description": "<p>Properties by which verifiable domain connections can be ordered.</p>",
|
||||
"values": [
|
||||
{
|
||||
"name": "CREATED_AT",
|
||||
"description": "<p>Order verifiable domains by their creation date.</p>"
|
||||
},
|
||||
{
|
||||
"name": "DOMAIN",
|
||||
"description": "<p>Order verifiable domains by the domain name.</p>"
|
||||
|
||||
@@ -2912,25 +2912,6 @@
|
||||
"id": "pinissue",
|
||||
"href": "/graphql/reference/mutations#pinissue",
|
||||
"description": "<p>Pin an issue to a repository.</p>",
|
||||
"isDeprecated": false,
|
||||
"preview": {
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
},
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
@@ -3709,25 +3690,6 @@
|
||||
"id": "unpinissue",
|
||||
"href": "/graphql/reference/mutations#unpinissue",
|
||||
"description": "<p>Unpin a pinned issue from a repository.</p>",
|
||||
"isDeprecated": false,
|
||||
"preview": {
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
},
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
@@ -18428,6 +18390,14 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "isPinned",
|
||||
"description": "<p>Indicates whether or not this issue is currently pinned to the repository issues list.</p>",
|
||||
"type": "Boolean",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "isReadByViewer",
|
||||
"description": "<p>Is this issue read by the viewer.</p>",
|
||||
@@ -29154,25 +29124,6 @@
|
||||
"id": "pinnedissue",
|
||||
"href": "/graphql/reference/objects#pinnedissue",
|
||||
"description": "<p>A Pinned Issue is a issue pinned to a repository's index page.</p>",
|
||||
"isDeprecated": false,
|
||||
"preview": {
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
},
|
||||
"implements": [
|
||||
{
|
||||
"name": "Node",
|
||||
@@ -29221,25 +29172,6 @@
|
||||
"id": "pinnedissueconnection",
|
||||
"href": "/graphql/reference/objects#pinnedissueconnection",
|
||||
"description": "<p>The connection type for PinnedIssue.</p>",
|
||||
"isDeprecated": false,
|
||||
"preview": {
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
},
|
||||
"fields": [
|
||||
{
|
||||
"name": "edges",
|
||||
@@ -29281,25 +29213,6 @@
|
||||
"id": "pinnedissueedge",
|
||||
"href": "/graphql/reference/objects#pinnedissueedge",
|
||||
"description": "<p>An edge in a connection.</p>",
|
||||
"isDeprecated": false,
|
||||
"preview": {
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
},
|
||||
"fields": [
|
||||
{
|
||||
"name": "cursor",
|
||||
@@ -41277,26 +41190,7 @@
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
}
|
||||
],
|
||||
"isDeprecated": false,
|
||||
"preview": {
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "primaryLanguage",
|
||||
@@ -51833,6 +51727,14 @@
|
||||
}
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"name": "createdAt",
|
||||
"description": "<p>Identifies the date and time when the object was created.</p>",
|
||||
"type": "DateTime!",
|
||||
"id": "datetime",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#datetime"
|
||||
},
|
||||
{
|
||||
"name": "databaseId",
|
||||
"description": "<p>Identifies the primary key from the database.</p>",
|
||||
@@ -51913,6 +51815,14 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#datetime"
|
||||
},
|
||||
{
|
||||
"name": "updatedAt",
|
||||
"description": "<p>Identifies the date and time when the object was last updated.</p>",
|
||||
"type": "DateTime!",
|
||||
"id": "datetime",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#datetime"
|
||||
},
|
||||
{
|
||||
"name": "verificationToken",
|
||||
"description": "<p>The current verification token for the domain.</p>",
|
||||
|
||||
Reference in New Issue
Block a user