Branch was updated using the 'autoupdate branch' Actions workflow.
This commit is contained in:
@@ -83,7 +83,7 @@
|
||||
toggled_on:
|
||||
- Mutation.createContentAttachment
|
||||
owning_teams:
|
||||
- '@github/ce-extensibility'
|
||||
- '@github/feature-lifecycle'
|
||||
- title: Pinned Issues Preview
|
||||
description: This preview adds support for pinned issues.
|
||||
toggled_by: ':elektra-preview'
|
||||
|
||||
@@ -1757,6 +1757,11 @@ enum CheckConclusionState {
|
||||
"""
|
||||
STALE
|
||||
|
||||
"""
|
||||
The check suite or run has failed at startup.
|
||||
"""
|
||||
STARTUP_FAILURE
|
||||
|
||||
"""
|
||||
The check suite or run has succeeded.
|
||||
"""
|
||||
@@ -6584,6 +6589,11 @@ enum DeploymentState {
|
||||
The deployment has queued
|
||||
"""
|
||||
QUEUED
|
||||
|
||||
"""
|
||||
The deployment is waiting.
|
||||
"""
|
||||
WAITING
|
||||
}
|
||||
|
||||
"""
|
||||
@@ -10836,6 +10846,11 @@ type Issue implements Assignable & Closable & Comment & Labelable & Lockable & N
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Ordering options for issue comments returned from the connection.
|
||||
"""
|
||||
orderBy: IssueCommentOrder
|
||||
): IssueCommentConnection!
|
||||
|
||||
"""
|
||||
@@ -11427,6 +11442,31 @@ type IssueCommentEdge {
|
||||
node: IssueComment
|
||||
}
|
||||
|
||||
"""
|
||||
Ways in which lists of issue comments can be ordered upon return.
|
||||
"""
|
||||
input IssueCommentOrder {
|
||||
"""
|
||||
The direction in which to order issue comments by the specified field.
|
||||
"""
|
||||
direction: OrderDirection!
|
||||
|
||||
"""
|
||||
The field in which to order issue comments by.
|
||||
"""
|
||||
field: IssueCommentOrderField!
|
||||
}
|
||||
|
||||
"""
|
||||
Properties by which issue comment connections can be ordered.
|
||||
"""
|
||||
enum IssueCommentOrderField {
|
||||
"""
|
||||
Order issue comments by update time
|
||||
"""
|
||||
UPDATED_AT
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for Issue.
|
||||
"""
|
||||
@@ -12434,12 +12474,12 @@ input LockLockableInput {
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
A reason for why the issue or pull request will be locked.
|
||||
A reason for why the item will be locked.
|
||||
"""
|
||||
lockReason: LockReason
|
||||
|
||||
"""
|
||||
ID of the issue or pull request to be locked.
|
||||
ID of the item to be locked.
|
||||
"""
|
||||
lockableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Lockable")
|
||||
}
|
||||
@@ -20277,6 +20317,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Ordering options for issue comments returned from the connection.
|
||||
"""
|
||||
orderBy: IssueCommentOrder
|
||||
): IssueCommentConnection!
|
||||
|
||||
"""
|
||||
@@ -29978,7 +30023,7 @@ type Sponsorship implements Node {
|
||||
sponsor: User @deprecated(reason: "`Sponsorship.sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead. Removal on 2020-10-01 UTC.")
|
||||
|
||||
"""
|
||||
The user or organization that is sponsoring. Returns null if the sponsorship is private.
|
||||
The user or organization that is sponsoring, if you have permission to view them.
|
||||
"""
|
||||
sponsorEntity: Sponsor
|
||||
|
||||
@@ -33172,7 +33217,7 @@ input UnlockLockableInput {
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
ID of the issue or pull request to be unlocked.
|
||||
ID of the item to be unlocked.
|
||||
"""
|
||||
lockableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Lockable")
|
||||
}
|
||||
@@ -35489,6 +35534,11 @@ type User implements Actor & Node & ProfileOwner & ProjectOwner & RepositoryOwne
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Ordering options for issue comments returned from the connection.
|
||||
"""
|
||||
orderBy: IssueCommentOrder
|
||||
): IssueCommentConnection!
|
||||
|
||||
"""
|
||||
|
||||
@@ -99,7 +99,7 @@
|
||||
toggled_on:
|
||||
- Mutation.createContentAttachment
|
||||
owning_teams:
|
||||
- '@github/ce-extensibility'
|
||||
- '@github/feature-lifecycle'
|
||||
- title: Pinned Issues Preview
|
||||
description: This preview adds support for pinned issues.
|
||||
toggled_by: ':elektra-preview'
|
||||
|
||||
@@ -1812,6 +1812,11 @@ enum CheckConclusionState {
|
||||
"""
|
||||
STALE
|
||||
|
||||
"""
|
||||
The check suite or run has failed at startup.
|
||||
"""
|
||||
STARTUP_FAILURE
|
||||
|
||||
"""
|
||||
The check suite or run has succeeded.
|
||||
"""
|
||||
@@ -6935,6 +6940,11 @@ enum DeploymentState {
|
||||
The deployment has queued
|
||||
"""
|
||||
QUEUED
|
||||
|
||||
"""
|
||||
The deployment is waiting.
|
||||
"""
|
||||
WAITING
|
||||
}
|
||||
|
||||
"""
|
||||
@@ -11432,6 +11442,11 @@ type Issue implements Assignable & Closable & Comment & Labelable & Lockable & N
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Ordering options for issue comments returned from the connection.
|
||||
"""
|
||||
orderBy: IssueCommentOrder
|
||||
): IssueCommentConnection!
|
||||
|
||||
"""
|
||||
@@ -12023,6 +12038,31 @@ type IssueCommentEdge {
|
||||
node: IssueComment
|
||||
}
|
||||
|
||||
"""
|
||||
Ways in which lists of issue comments can be ordered upon return.
|
||||
"""
|
||||
input IssueCommentOrder {
|
||||
"""
|
||||
The direction in which to order issue comments by the specified field.
|
||||
"""
|
||||
direction: OrderDirection!
|
||||
|
||||
"""
|
||||
The field in which to order issue comments by.
|
||||
"""
|
||||
field: IssueCommentOrderField!
|
||||
}
|
||||
|
||||
"""
|
||||
Properties by which issue comment connections can be ordered.
|
||||
"""
|
||||
enum IssueCommentOrderField {
|
||||
"""
|
||||
Order issue comments by update time
|
||||
"""
|
||||
UPDATED_AT
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for Issue.
|
||||
"""
|
||||
@@ -13030,12 +13070,12 @@ input LockLockableInput {
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
A reason for why the issue or pull request will be locked.
|
||||
A reason for why the item will be locked.
|
||||
"""
|
||||
lockReason: LockReason
|
||||
|
||||
"""
|
||||
ID of the issue or pull request to be locked.
|
||||
ID of the item to be locked.
|
||||
"""
|
||||
lockableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Lockable")
|
||||
}
|
||||
@@ -18661,6 +18701,11 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
|
||||
The organization's public email.
|
||||
"""
|
||||
email: String
|
||||
|
||||
"""
|
||||
True if this user/organization has a GitHub Sponsors listing.
|
||||
"""
|
||||
hasSponsorsListing: Boolean!
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
@@ -18698,6 +18743,11 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
|
||||
orderBy: IpAllowListEntryOrder = {field: ALLOW_LIST_VALUE, direction: ASC}
|
||||
): IpAllowListEntryConnection!
|
||||
|
||||
"""
|
||||
True if the viewer is sponsored by this user/organization.
|
||||
"""
|
||||
isSponsoringViewer: Boolean!
|
||||
|
||||
"""
|
||||
Whether the organization has verified its profile email and website, always false on Enterprise.
|
||||
"""
|
||||
@@ -19075,7 +19125,7 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
|
||||
samlIdentityProvider: OrganizationIdentityProvider
|
||||
|
||||
"""
|
||||
The GitHub Sponsors listing for this user.
|
||||
The GitHub Sponsors listing for this user or organization.
|
||||
"""
|
||||
sponsorsListing: SponsorsListing
|
||||
|
||||
@@ -19266,11 +19316,21 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
|
||||
"""
|
||||
viewerCanCreateTeams: Boolean!
|
||||
|
||||
"""
|
||||
Whether or not the viewer is able to sponsor this user/organization.
|
||||
"""
|
||||
viewerCanSponsor: Boolean!
|
||||
|
||||
"""
|
||||
Viewer is an active member of this organization.
|
||||
"""
|
||||
viewerIsAMember: Boolean!
|
||||
|
||||
"""
|
||||
True if the viewer is sponsoring this user/organization.
|
||||
"""
|
||||
viewerIsSponsoring: Boolean!
|
||||
|
||||
"""
|
||||
The organization's public profile URL.
|
||||
"""
|
||||
@@ -21876,6 +21936,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Ordering options for issue comments returned from the connection.
|
||||
"""
|
||||
orderBy: IssueCommentOrder
|
||||
): IssueCommentConnection!
|
||||
|
||||
"""
|
||||
@@ -31946,7 +32011,17 @@ Entities that can be sponsored through GitHub Sponsors
|
||||
"""
|
||||
interface Sponsorable {
|
||||
"""
|
||||
The GitHub Sponsors listing for this user.
|
||||
True if this user/organization has a GitHub Sponsors listing.
|
||||
"""
|
||||
hasSponsorsListing: Boolean!
|
||||
|
||||
"""
|
||||
True if the viewer is sponsored by this user/organization.
|
||||
"""
|
||||
isSponsoringViewer: Boolean!
|
||||
|
||||
"""
|
||||
The GitHub Sponsors listing for this user or organization.
|
||||
"""
|
||||
sponsorsListing: SponsorsListing
|
||||
|
||||
@@ -32016,6 +32091,16 @@ interface Sponsorable {
|
||||
"""
|
||||
orderBy: SponsorshipOrder
|
||||
): SponsorshipConnection!
|
||||
|
||||
"""
|
||||
Whether or not the viewer is able to sponsor this user/organization.
|
||||
"""
|
||||
viewerCanSponsor: Boolean!
|
||||
|
||||
"""
|
||||
True if the viewer is sponsoring this user/organization.
|
||||
"""
|
||||
viewerIsSponsoring: Boolean!
|
||||
}
|
||||
|
||||
"""
|
||||
@@ -32272,7 +32357,7 @@ type Sponsorship implements Node {
|
||||
sponsor: User @deprecated(reason: "`Sponsorship.sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead. Removal on 2020-10-01 UTC.")
|
||||
|
||||
"""
|
||||
The user or organization that is sponsoring. Returns null if the sponsorship is private.
|
||||
The user or organization that is sponsoring, if you have permission to view them.
|
||||
"""
|
||||
sponsorEntity: Sponsor
|
||||
|
||||
@@ -35511,7 +35596,7 @@ input UnlockLockableInput {
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
ID of the issue or pull request to be unlocked.
|
||||
ID of the item to be unlocked.
|
||||
"""
|
||||
lockableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Lockable")
|
||||
}
|
||||
@@ -37799,6 +37884,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
||||
privacy: GistPrivacy
|
||||
): GistConnection!
|
||||
|
||||
"""
|
||||
True if this user/organization has a GitHub Sponsors listing.
|
||||
"""
|
||||
hasSponsorsListing: Boolean!
|
||||
|
||||
"""
|
||||
The hovercard information for this user in a given context
|
||||
"""
|
||||
@@ -37840,6 +37930,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
||||
"""
|
||||
isSiteAdmin: Boolean!
|
||||
|
||||
"""
|
||||
True if the viewer is sponsored by this user/organization.
|
||||
"""
|
||||
isSponsoringViewer: Boolean!
|
||||
|
||||
"""
|
||||
Whether or not this user is the viewing user.
|
||||
"""
|
||||
@@ -37868,6 +37963,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Ordering options for issue comments returned from the connection.
|
||||
"""
|
||||
orderBy: IssueCommentOrder
|
||||
): IssueCommentConnection!
|
||||
|
||||
"""
|
||||
@@ -38382,7 +38482,7 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
||||
): SavedReplyConnection
|
||||
|
||||
"""
|
||||
The GitHub Sponsors listing for this user.
|
||||
The GitHub Sponsors listing for this user or organization.
|
||||
"""
|
||||
sponsorsListing: SponsorsListing
|
||||
|
||||
@@ -38558,11 +38658,21 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
||||
"""
|
||||
viewerCanFollow: Boolean!
|
||||
|
||||
"""
|
||||
Whether or not the viewer is able to sponsor this user/organization.
|
||||
"""
|
||||
viewerCanSponsor: Boolean!
|
||||
|
||||
"""
|
||||
Whether or not this user is followed by the viewer.
|
||||
"""
|
||||
viewerIsFollowing: Boolean!
|
||||
|
||||
"""
|
||||
True if the viewer is sponsoring this user/organization.
|
||||
"""
|
||||
viewerIsSponsoring: Boolean!
|
||||
|
||||
"""
|
||||
A list of repositories the given user is watching.
|
||||
"""
|
||||
|
||||
@@ -1,4 +1,25 @@
|
||||
[
|
||||
{
|
||||
"date": "2020-11-13",
|
||||
"schemaChanges": [
|
||||
{
|
||||
"title": "The GraphQL schema includes these changes:",
|
||||
"changes": [
|
||||
"Input field `requiresLinearHistory` was added to input object type `UpdateBranchProtectionRuleInput`",
|
||||
"Input field `allowsForcePushes` was added to input object type `UpdateBranchProtectionRuleInput`",
|
||||
"Input field `allowsDeletions` was added to input object type `UpdateBranchProtectionRuleInput`",
|
||||
"Input field `requiresLinearHistory` was added to input object type `CreateBranchProtectionRuleInput`",
|
||||
"Input field `allowsForcePushes` was added to input object type `CreateBranchProtectionRuleInput`",
|
||||
"Input field `allowsDeletions` was added to input object type `CreateBranchProtectionRuleInput`",
|
||||
"Field `requiresLinearHistory` was added to object type `BranchProtectionRule`",
|
||||
"Field `allowsForcePushes` was added to object type `BranchProtectionRule`",
|
||||
"Field `allowsDeletions` was added to object type `BranchProtectionRule`"
|
||||
]
|
||||
}
|
||||
],
|
||||
"previewChanges": [],
|
||||
"upcomingChanges": []
|
||||
},
|
||||
{
|
||||
"date": "2020-10-12",
|
||||
"schemaChanges": [
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -109,7 +109,7 @@
|
||||
"Mutation.createContentAttachment"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/ce-extensibility"
|
||||
"@github/feature-lifecycle"
|
||||
],
|
||||
"accept_header": "application/vnd.github.corsair-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
|
||||
@@ -1254,7 +1254,7 @@
|
||||
"Mutation.createContentAttachment"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/ce-extensibility"
|
||||
"@github/feature-lifecycle"
|
||||
],
|
||||
"accept_header": "application/vnd.github.corsair-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
|
||||
|
||||
@@ -1685,7 +1685,7 @@
|
||||
"Mutation.createContentAttachment"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/ce-extensibility"
|
||||
"@github/feature-lifecycle"
|
||||
],
|
||||
"accept_header": "application/vnd.github.corsair-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
|
||||
@@ -19033,6 +19033,16 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "orderBy",
|
||||
"description": "<p>Ordering options for issue comments returned from the connection.</p>",
|
||||
"type": {
|
||||
"name": "IssueCommentOrder",
|
||||
"id": "issuecommentorder",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#issuecommentorder"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -28527,6 +28537,14 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "hasSponsorsListing",
|
||||
"description": "<p>True if this user/organization has a GitHub Sponsors listing.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "ipAllowListEnabledSetting",
|
||||
"description": "<p>The setting value for whether the organization has an IP allow list enabled.</p>",
|
||||
@@ -28595,6 +28613,14 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "isSponsoringViewer",
|
||||
"description": "<p>True if the viewer is sponsored by this user/organization.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "isVerified",
|
||||
"description": "<p>Whether the organization has verified its profile email and website, always false on Enterprise.</p>",
|
||||
@@ -29309,7 +29335,7 @@
|
||||
},
|
||||
{
|
||||
"name": "sponsorsListing",
|
||||
"description": "<p>The GitHub Sponsors listing for this user.</p>",
|
||||
"description": "<p>The GitHub Sponsors listing for this user or organization.</p>",
|
||||
"type": "SponsorsListing",
|
||||
"id": "sponsorslisting",
|
||||
"kind": "objects",
|
||||
@@ -29667,6 +29693,14 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "viewerCanSponsor",
|
||||
"description": "<p>Whether or not the viewer is able to sponsor this user/organization.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "viewerIsAMember",
|
||||
"description": "<p>Viewer is an active member of this organization.</p>",
|
||||
@@ -29675,6 +29709,14 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "viewerIsSponsoring",
|
||||
"description": "<p>True if the viewer is sponsoring this user/organization.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "websiteUrl",
|
||||
"description": "<p>The organization's public profile URL.</p>",
|
||||
@@ -33067,6 +33109,16 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "orderBy",
|
||||
"description": "<p>Ordering options for issue comments returned from the connection.</p>",
|
||||
"type": {
|
||||
"name": "IssueCommentOrder",
|
||||
"id": "issuecommentorder",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#issuecommentorder"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -46989,7 +47041,7 @@
|
||||
},
|
||||
{
|
||||
"name": "sponsorEntity",
|
||||
"description": "<p>The user or organization that is sponsoring. Returns null if the sponsorship is private.</p>",
|
||||
"description": "<p>The user or organization that is sponsoring, if you have permission to view them.</p>",
|
||||
"type": "Sponsor",
|
||||
"id": "sponsor",
|
||||
"kind": "unions",
|
||||
@@ -52315,6 +52367,14 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "hasSponsorsListing",
|
||||
"description": "<p>True if this user/organization has a GitHub Sponsors listing.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "hovercard",
|
||||
"description": "<p>The hovercard information for this user in a given context.</p>",
|
||||
@@ -52383,6 +52443,14 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "isSponsoringViewer",
|
||||
"description": "<p>True if the viewer is sponsored by this user/organization.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "isViewer",
|
||||
"description": "<p>Whether or not this user is the viewing user.</p>",
|
||||
@@ -52438,6 +52506,16 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "orderBy",
|
||||
"description": "<p>Ordering options for issue comments returned from the connection.</p>",
|
||||
"type": {
|
||||
"name": "IssueCommentOrder",
|
||||
"id": "issuecommentorder",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#issuecommentorder"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -53437,7 +53515,7 @@
|
||||
},
|
||||
{
|
||||
"name": "sponsorsListing",
|
||||
"description": "<p>The GitHub Sponsors listing for this user.</p>",
|
||||
"description": "<p>The GitHub Sponsors listing for this user or organization.</p>",
|
||||
"type": "SponsorsListing",
|
||||
"id": "sponsorslisting",
|
||||
"kind": "objects",
|
||||
@@ -53770,6 +53848,14 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "viewerCanSponsor",
|
||||
"description": "<p>Whether or not the viewer is able to sponsor this user/organization.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "viewerIsFollowing",
|
||||
"description": "<p>Whether or not this user is followed by the viewer.</p>",
|
||||
@@ -53778,6 +53864,14 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "viewerIsSponsoring",
|
||||
"description": "<p>True if the viewer is sponsoring this user/organization.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "watching",
|
||||
"description": "<p>A list of repositories the given user is watching.</p>",
|
||||
@@ -56357,9 +56451,25 @@
|
||||
"href": "/graphql/reference/interfaces#sponsorable",
|
||||
"description": "<p>Entities that can be sponsored through GitHub Sponsors.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "hasSponsorsListing",
|
||||
"description": "<p>True if this user/organization has a GitHub Sponsors listing.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "isSponsoringViewer",
|
||||
"description": "<p>True if the viewer is sponsored by this user/organization.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "sponsorsListing",
|
||||
"description": "<p>The GitHub Sponsors listing for this user.</p>",
|
||||
"description": "<p>The GitHub Sponsors listing for this user or organization.</p>",
|
||||
"type": "SponsorsListing",
|
||||
"id": "sponsorslisting",
|
||||
"kind": "objects",
|
||||
@@ -56495,6 +56605,22 @@
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "viewerCanSponsor",
|
||||
"description": "<p>Whether or not the viewer is able to sponsor this user/organization.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "viewerIsSponsoring",
|
||||
"description": "<p>True if the viewer is sponsoring this user/organization.</p>",
|
||||
"type": "Boolean!",
|
||||
"id": "boolean",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -56800,6 +56926,10 @@
|
||||
"name": "STALE",
|
||||
"description": "<p>The check suite or run was marked stale by GitHub. Only GitHub can use this conclusion.</p>"
|
||||
},
|
||||
{
|
||||
"name": "STARTUP_FAILURE",
|
||||
"description": "<p>The check suite or run has failed at startup.</p>"
|
||||
},
|
||||
{
|
||||
"name": "SUCCESS",
|
||||
"description": "<p>The check suite or run has succeeded.</p>"
|
||||
@@ -57048,6 +57178,10 @@
|
||||
{
|
||||
"name": "QUEUED",
|
||||
"description": "<p>The deployment has queued.</p>"
|
||||
},
|
||||
{
|
||||
"name": "WAITING",
|
||||
"description": "<p>The deployment is waiting.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -57628,6 +57762,19 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "IssueCommentOrderField",
|
||||
"kind": "enums",
|
||||
"id": "issuecommentorderfield",
|
||||
"href": "/graphql/reference/enums#issuecommentorderfield",
|
||||
"description": "<p>Properties by which issue comment connections can be ordered.</p>",
|
||||
"values": [
|
||||
{
|
||||
"name": "UPDATED_AT",
|
||||
"description": "<p>Order issue comments by update time.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "IssueOrderField",
|
||||
"kind": "enums",
|
||||
@@ -64882,6 +65029,31 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "IssueCommentOrder",
|
||||
"kind": "inputObjects",
|
||||
"id": "issuecommentorder",
|
||||
"href": "/graphql/reference/input-objects#issuecommentorder",
|
||||
"description": "<p>Ways in which lists of issue comments can be ordered upon return.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "direction",
|
||||
"description": "<p>The direction in which to order issue comments by the specified field.</p>",
|
||||
"type": "OrderDirection!",
|
||||
"id": "orderdirection",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#orderdirection"
|
||||
},
|
||||
{
|
||||
"name": "field",
|
||||
"description": "<p>The field in which to order issue comments by.</p>",
|
||||
"type": "IssueCommentOrderField!",
|
||||
"id": "issuecommentorderfield",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#issuecommentorderfield"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "IssueFilters",
|
||||
"kind": "inputObjects",
|
||||
@@ -65082,7 +65254,7 @@
|
||||
},
|
||||
{
|
||||
"name": "lockReason",
|
||||
"description": "<p>A reason for why the issue or pull request will be locked.</p>",
|
||||
"description": "<p>A reason for why the item will be locked.</p>",
|
||||
"type": "LockReason",
|
||||
"id": "lockreason",
|
||||
"kind": "enums",
|
||||
@@ -65090,7 +65262,7 @@
|
||||
},
|
||||
{
|
||||
"name": "lockableId",
|
||||
"description": "<p>ID of the issue or pull request to be locked.</p>",
|
||||
"description": "<p>ID of the item to be locked.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
@@ -66844,7 +67016,7 @@
|
||||
},
|
||||
{
|
||||
"name": "lockableId",
|
||||
"description": "<p>ID of the issue or pull request to be unlocked.</p>",
|
||||
"description": "<p>ID of the item to be unlocked.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
|
||||
@@ -1419,7 +1419,7 @@
|
||||
"Mutation.createContentAttachment"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/ce-extensibility"
|
||||
"@github/feature-lifecycle"
|
||||
],
|
||||
"accept_header": "application/vnd.github.corsair-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
|
||||
@@ -17808,6 +17808,16 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "orderBy",
|
||||
"description": "<p>Ordering options for issue comments returned from the connection.</p>",
|
||||
"type": {
|
||||
"name": "IssueCommentOrder",
|
||||
"id": "issuecommentorder",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#issuecommentorder"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -30512,6 +30522,16 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "orderBy",
|
||||
"description": "<p>Ordering options for issue comments returned from the connection.</p>",
|
||||
"type": {
|
||||
"name": "IssueCommentOrder",
|
||||
"id": "issuecommentorder",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#issuecommentorder"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -43870,7 +43890,7 @@
|
||||
},
|
||||
{
|
||||
"name": "sponsorEntity",
|
||||
"description": "<p>The user or organization that is sponsoring. Returns null if the sponsorship is private.</p>",
|
||||
"description": "<p>The user or organization that is sponsoring, if you have permission to view them.</p>",
|
||||
"type": "Sponsor",
|
||||
"id": "sponsor",
|
||||
"kind": "unions",
|
||||
@@ -49306,6 +49326,16 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "orderBy",
|
||||
"description": "<p>Ordering options for issue comments returned from the connection.</p>",
|
||||
"type": {
|
||||
"name": "IssueCommentOrder",
|
||||
"id": "issuecommentorder",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#issuecommentorder"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -53479,6 +53509,10 @@
|
||||
"name": "STALE",
|
||||
"description": "<p>The check suite or run was marked stale by GitHub. Only GitHub can use this conclusion.</p>"
|
||||
},
|
||||
{
|
||||
"name": "STARTUP_FAILURE",
|
||||
"description": "<p>The check suite or run has failed at startup.</p>"
|
||||
},
|
||||
{
|
||||
"name": "SUCCESS",
|
||||
"description": "<p>The check suite or run has succeeded.</p>"
|
||||
@@ -53727,6 +53761,10 @@
|
||||
{
|
||||
"name": "QUEUED",
|
||||
"description": "<p>The deployment has queued.</p>"
|
||||
},
|
||||
{
|
||||
"name": "WAITING",
|
||||
"description": "<p>The deployment is waiting.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -54237,6 +54275,19 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "IssueCommentOrderField",
|
||||
"kind": "enums",
|
||||
"id": "issuecommentorderfield",
|
||||
"href": "/graphql/reference/enums#issuecommentorderfield",
|
||||
"description": "<p>Properties by which issue comment connections can be ordered.</p>",
|
||||
"values": [
|
||||
{
|
||||
"name": "UPDATED_AT",
|
||||
"description": "<p>Order issue comments by update time.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "IssueOrderField",
|
||||
"kind": "enums",
|
||||
@@ -61047,6 +61098,31 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "IssueCommentOrder",
|
||||
"kind": "inputObjects",
|
||||
"id": "issuecommentorder",
|
||||
"href": "/graphql/reference/input-objects#issuecommentorder",
|
||||
"description": "<p>Ways in which lists of issue comments can be ordered upon return.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "direction",
|
||||
"description": "<p>The direction in which to order issue comments by the specified field.</p>",
|
||||
"type": "OrderDirection!",
|
||||
"id": "orderdirection",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#orderdirection"
|
||||
},
|
||||
{
|
||||
"name": "field",
|
||||
"description": "<p>The field in which to order issue comments by.</p>",
|
||||
"type": "IssueCommentOrderField!",
|
||||
"id": "issuecommentorderfield",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#issuecommentorderfield"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "IssueFilters",
|
||||
"kind": "inputObjects",
|
||||
@@ -61247,7 +61323,7 @@
|
||||
},
|
||||
{
|
||||
"name": "lockReason",
|
||||
"description": "<p>A reason for why the issue or pull request will be locked.</p>",
|
||||
"description": "<p>A reason for why the item will be locked.</p>",
|
||||
"type": "LockReason",
|
||||
"id": "lockreason",
|
||||
"kind": "enums",
|
||||
@@ -61255,7 +61331,7 @@
|
||||
},
|
||||
{
|
||||
"name": "lockableId",
|
||||
"description": "<p>ID of the issue or pull request to be locked.</p>",
|
||||
"description": "<p>ID of the item to be locked.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
@@ -62665,7 +62741,7 @@
|
||||
},
|
||||
{
|
||||
"name": "lockableId",
|
||||
"description": "<p>ID of the issue or pull request to be unlocked.</p>",
|
||||
"description": "<p>ID of the item to be unlocked.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
|
||||
Reference in New Issue
Block a user