Action ran graphql script"update-files"

This commit is contained in:
rachmari 2021-09-03 16:35:35 +00:00 коммит произвёл GitHub
Родитель d8b4383dc6
Коммит 187cfec0f2
9 изменённых файлов: 86 добавлений и 1004 удалений

Просмотреть файл

@ -38,12 +38,6 @@ upcoming_changes:
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: Sponsorship.maintainer
description: '`maintainer` will be removed. Use `Sponsorship.sponsorable` instead.'
reason: '`Sponsorship.maintainer` will be removed.'
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: antn
- location: EnterprisePendingMemberInvitationEdge.isUnlicensed
description: '`isUnlicensed` will be removed.'
reason: All pending members consume a license
@ -80,12 +74,6 @@ upcoming_changes:
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: jdennes
- location: Sponsorship.sponsor
description: '`sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead.'
reason: '`Sponsorship.sponsor` will be removed.'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: nholden
- location: EnterpriseMemberEdge.isUnlicensed
description: '`isUnlicensed` will be removed.'
reason: All members consume a license

Просмотреть файл

@ -20635,7 +20635,7 @@ type OrgUpdateMemberRepositoryInvitationPermissionAuditEntry implements AuditEnt
"""
An account on GitHub, with one or more owners, that has repositories, members and teams.
"""
type Organization implements Actor & MemberStatusable & Node & ProfileOwner & ProjectOwner & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
type Organization implements Actor & MemberStatusable & Node & ProfileOwner & ProjectOwner & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & UniformResourceLocatable {
"""
Determine if this repository owner has any items that can be pinned to their profile.
"""
@ -21159,73 +21159,6 @@ type Organization implements Actor & MemberStatusable & Node & ProfileOwner & Pr
"""
samlIdentityProvider: OrganizationIdentityProvider
"""
This object's sponsorships as the maintainer.
"""
sponsorshipsAsMaintainer(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Whether or not to include private sponsorships in the result set
"""
includePrivate: Boolean = false
"""
Returns the last _n_ elements from the list.
"""
last: Int
"""
Ordering options for sponsorships returned from this connection. If left
blank, the sponsorships will be ordered based on relevancy to the viewer.
"""
orderBy: SponsorshipOrder
): SponsorshipConnection!
"""
This object's sponsorships as the sponsor.
"""
sponsorshipsAsSponsor(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Returns the last _n_ elements from the list.
"""
last: Int
"""
Ordering options for sponsorships returned from this connection. If left
blank, the sponsorships will be ordered based on relevancy to the viewer.
"""
orderBy: SponsorshipOrder
): SponsorshipConnection!
"""
Find an organization's team by its slug.
"""
@ -34046,200 +33979,6 @@ type SmimeSignature implements GitSignature {
wasSignedByGitHub: Boolean!
}
"""
Entities that can sponsor others via GitHub Sponsors
"""
union Sponsor = Organization | User
"""
Entities that can be sponsored through GitHub Sponsors
"""
interface Sponsorable {
"""
This object's sponsorships as the maintainer.
"""
sponsorshipsAsMaintainer(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Whether or not to include private sponsorships in the result set
"""
includePrivate: Boolean = false
"""
Returns the last _n_ elements from the list.
"""
last: Int
"""
Ordering options for sponsorships returned from this connection. If left
blank, the sponsorships will be ordered based on relevancy to the viewer.
"""
orderBy: SponsorshipOrder
): SponsorshipConnection!
"""
This object's sponsorships as the sponsor.
"""
sponsorshipsAsSponsor(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Returns the last _n_ elements from the list.
"""
last: Int
"""
Ordering options for sponsorships returned from this connection. If left
blank, the sponsorships will be ordered based on relevancy to the viewer.
"""
orderBy: SponsorshipOrder
): SponsorshipConnection!
}
"""
A sponsorship relationship between a sponsor and a maintainer
"""
type Sponsorship implements Node {
"""
Identifies the date and time when the object was created.
"""
createdAt: DateTime!
id: ID!
"""
Whether this sponsorship represents a one-time payment versus a recurring sponsorship.
"""
isOneTimePayment: Boolean!
"""
The entity that is being sponsored
"""
maintainer: User!
@deprecated(
reason: "`Sponsorship.maintainer` will be removed. Use `Sponsorship.sponsorable` instead. Removal on 2020-04-01 UTC."
)
"""
The privacy level for this sponsorship.
"""
privacyLevel: SponsorshipPrivacy!
"""
The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.
"""
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, if you have permission to view them.
"""
sponsorEntity: Sponsor
"""
The entity that is being sponsored
"""
sponsorable: Sponsorable!
"""
Identifies the date and time when the current tier was chosen for this sponsorship.
"""
tierSelectedAt: DateTime
}
"""
The connection type for Sponsorship.
"""
type SponsorshipConnection {
"""
A list of edges.
"""
edges: [SponsorshipEdge]
"""
A list of nodes.
"""
nodes: [Sponsorship]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}
"""
An edge in a connection.
"""
type SponsorshipEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: Sponsorship
}
"""
Ordering options for sponsorship connections.
"""
input SponsorshipOrder {
"""
The ordering direction.
"""
direction: OrderDirection!
}
"""
The privacy of a sponsorship
"""
enum SponsorshipPrivacy {
"""
Private
"""
PRIVATE
"""
Public
"""
PUBLIC
}
"""
Ways in which star connections can be ordered.
"""
@ -39599,7 +39338,7 @@ type UpdateTopicsPayload {
"""
A user is an individual's account on GitHub that owns repositories and can make new content.
"""
type User implements Actor & Node & ProfileOwner & ProjectOwner & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
type User implements Actor & Node & ProfileOwner & ProjectOwner & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & UniformResourceLocatable {
"""
Determine if this repository owner has any items that can be pinned to their profile.
"""
@ -40460,73 +40199,6 @@ type User implements Actor & Node & ProfileOwner & ProjectOwner & RepositoryDisc
orderBy: SavedReplyOrder = {field: UPDATED_AT, direction: DESC}
): SavedReplyConnection
"""
This object's sponsorships as the maintainer.
"""
sponsorshipsAsMaintainer(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Whether or not to include private sponsorships in the result set
"""
includePrivate: Boolean = false
"""
Returns the last _n_ elements from the list.
"""
last: Int
"""
Ordering options for sponsorships returned from this connection. If left
blank, the sponsorships will be ordered based on relevancy to the viewer.
"""
orderBy: SponsorshipOrder
): SponsorshipConnection!
"""
This object's sponsorships as the sponsor.
"""
sponsorshipsAsSponsor(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Returns the last _n_ elements from the list.
"""
last: Int
"""
Ordering options for sponsorships returned from this connection. If left
blank, the sponsorships will be ordered based on relevancy to the viewer.
"""
orderBy: SponsorshipOrder
): SponsorshipConnection!
"""
Repositories the user has starred.
"""

Просмотреть файл

@ -22841,10 +22841,17 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
sponsorsListing: SponsorsListing
"""
The viewer's sponsorship of this entity.
The sponsorship from the viewer to this user/organization; that is, the
sponsorship where you're the sponsor. Only returns a sponsorship if it is active.
"""
sponsorshipForViewerAsSponsor: Sponsorship
"""
The sponsorship from this user/organization to the viewer; that is, the
sponsorship you're receiving. Only returns a sponsorship if it is active.
"""
sponsorshipForViewerAsSponsorable: Sponsorship
"""
List of sponsorship updates sent from this sponsorable to sponsors.
"""
@ -37313,10 +37320,17 @@ interface Sponsorable {
sponsorsListing: SponsorsListing
"""
The viewer's sponsorship of this entity.
The sponsorship from the viewer to this user/organization; that is, the
sponsorship where you're the sponsor. Only returns a sponsorship if it is active.
"""
sponsorshipForViewerAsSponsor: Sponsorship
"""
The sponsorship from this user/organization to the viewer; that is, the
sponsorship you're receiving. Only returns a sponsorship if it is active.
"""
sponsorshipForViewerAsSponsorable: Sponsorship
"""
List of sponsorship updates sent from this sponsorable to sponsors.
"""
@ -37983,6 +37997,12 @@ type Sponsorship implements Node {
"""
isOneTimePayment: Boolean!
"""
Check if the sponsor has chosen to receive sponsorship update emails sent from
the sponsorable. Only returns a non-null value when the viewer has permission to know this.
"""
isSponsorOptedIntoEmail: Boolean
"""
The entity that is being sponsored
"""
@ -44725,10 +44745,17 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
sponsorsListing: SponsorsListing
"""
The viewer's sponsorship of this entity.
The sponsorship from the viewer to this user/organization; that is, the
sponsorship where you're the sponsor. Only returns a sponsorship if it is active.
"""
sponsorshipForViewerAsSponsor: Sponsorship
"""
The sponsorship from this user/organization to the viewer; that is, the
sponsorship you're receiving. Only returns a sponsorship if it is active.
"""
sponsorshipForViewerAsSponsorable: Sponsorship
"""
List of sponsorship updates sent from this sponsorable to sponsors.
"""

Просмотреть файл

@ -1,4 +1,20 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Field `sponsorshipForViewerAsSponsorable` was added to object type `Organization`",
"Field `sponsorshipForViewerAsSponsorable` was added to interface `Sponsorable`",
"Field `isSponsorOptedIntoEmail` was added to object type `Sponsorship`",
"Field `sponsorshipForViewerAsSponsorable` was added to object type `User`"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2021-09-03"
},
{
"schemaChanges": [
{

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -33911,7 +33911,15 @@
},
{
"name": "sponsorshipForViewerAsSponsor",
"description": "<p>The viewer's sponsorship of this entity.</p>",
"description": "<p>The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.</p>",
"type": "Sponsorship",
"id": "sponsorship",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorship"
},
{
"name": "sponsorshipForViewerAsSponsorable",
"description": "<p>The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.</p>",
"type": "Sponsorship",
"id": "sponsorship",
"kind": "objects",
@ -52986,6 +52994,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "isSponsorOptedIntoEmail",
"description": "<p>Check if the sponsor has chosen to receive sponsorship update emails sent from\nthe sponsorable. Only returns a non-null value when the viewer has permission to know this.</p>",
"type": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "maintainer",
"description": "<p>The entity that is being sponsored.</p>",
@ -60129,7 +60145,15 @@
},
{
"name": "sponsorshipForViewerAsSponsor",
"description": "<p>The viewer's sponsorship of this entity.</p>",
"description": "<p>The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.</p>",
"type": "Sponsorship",
"id": "sponsorship",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorship"
},
{
"name": "sponsorshipForViewerAsSponsorable",
"description": "<p>The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.</p>",
"type": "Sponsorship",
"id": "sponsorship",
"kind": "objects",
@ -64018,7 +64042,15 @@
},
{
"name": "sponsorshipForViewerAsSponsor",
"description": "<p>The viewer's sponsorship of this entity.</p>",
"description": "<p>The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.</p>",
"type": "Sponsorship",
"id": "sponsorship",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorship"
},
{
"name": "sponsorshipForViewerAsSponsorable",
"description": "<p>The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.</p>",
"type": "Sponsorship",
"id": "sponsorship",
"kind": "objects",

Просмотреть файл

@ -30009,11 +30009,6 @@
"id": "repositoryowner",
"href": "/graphql/reference/interfaces#repositoryowner"
},
{
"name": "Sponsorable",
"id": "sponsorable",
"href": "/graphql/reference/interfaces#sponsorable"
},
{
"name": "UniformResourceLocatable",
"id": "uniformresourcelocatable",
@ -31012,137 +31007,6 @@
"kind": "objects",
"href": "/graphql/reference/objects#organizationidentityprovider"
},
{
"name": "sponsorshipsAsMaintainer",
"description": "<p>This object's sponsorships as the maintainer.</p>",
"type": "SponsorshipConnection!",
"id": "sponsorshipconnection",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorshipconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "includePrivate",
"defaultValue": false,
"description": "<p>Whether or not to include private sponsorships in the result set.</p>",
"type": {
"name": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "orderBy",
"description": "<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>",
"type": {
"name": "SponsorshipOrder",
"id": "sponsorshiporder",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#sponsorshiporder"
}
}
]
},
{
"name": "sponsorshipsAsSponsor",
"description": "<p>This object's sponsorships as the sponsor.</p>",
"type": "SponsorshipConnection!",
"id": "sponsorshipconnection",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorshipconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "orderBy",
"description": "<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>",
"type": {
"name": "SponsorshipOrder",
"id": "sponsorshiporder",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#sponsorshiporder"
}
}
]
},
{
"name": "team",
"description": "<p>Find an organization's team by its slug.</p>",
@ -48383,156 +48247,6 @@
}
]
},
{
"name": "Sponsorship",
"kind": "objects",
"id": "sponsorship",
"href": "/graphql/reference/objects#sponsorship",
"description": "<p>A sponsorship relationship between a sponsor and a maintainer.</p>",
"implements": [
{
"name": "Node",
"id": "node",
"href": "/graphql/reference/interfaces#node"
}
],
"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": "isOneTimePayment",
"description": "<p>Whether this sponsorship represents a one-time payment versus a recurring sponsorship.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "maintainer",
"description": "<p>The entity that is being sponsored.</p>",
"type": "User!",
"id": "user",
"kind": "objects",
"href": "/graphql/reference/objects#user",
"isDeprecated": true,
"deprecationReason": "<p><code>Sponsorship.maintainer</code> will be removed. Use <code>Sponsorship.sponsorable</code> instead. Removal on 2020-04-01 UTC.</p>"
},
{
"name": "privacyLevel",
"description": "<p>The privacy level for this sponsorship.</p>",
"type": "SponsorshipPrivacy!",
"id": "sponsorshipprivacy",
"kind": "enums",
"href": "/graphql/reference/enums#sponsorshipprivacy"
},
{
"name": "sponsor",
"description": "<p>The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.</p>",
"type": "User",
"id": "user",
"kind": "objects",
"href": "/graphql/reference/objects#user",
"isDeprecated": true,
"deprecationReason": "<p><code>Sponsorship.sponsor</code> will be removed. Use <code>Sponsorship.sponsorEntity</code> instead. Removal on 2020-10-01 UTC.</p>"
},
{
"name": "sponsorEntity",
"description": "<p>The user or organization that is sponsoring, if you have permission to view them.</p>",
"type": "Sponsor",
"id": "sponsor",
"kind": "unions",
"href": "/graphql/reference/unions#sponsor"
},
{
"name": "sponsorable",
"description": "<p>The entity that is being sponsored.</p>",
"type": "Sponsorable!",
"id": "sponsorable",
"kind": "interfaces",
"href": "/graphql/reference/interfaces#sponsorable"
},
{
"name": "tierSelectedAt",
"description": "<p>Identifies the date and time when the current tier was chosen for this sponsorship.</p>",
"type": "DateTime",
"id": "datetime",
"kind": "scalars",
"href": "/graphql/reference/scalars#datetime"
}
]
},
{
"name": "SponsorshipConnection",
"kind": "objects",
"id": "sponsorshipconnection",
"href": "/graphql/reference/objects#sponsorshipconnection",
"description": "<p>The connection type for Sponsorship.</p>",
"fields": [
{
"name": "edges",
"description": "<p>A list of edges.</p>",
"type": "[SponsorshipEdge]",
"id": "sponsorshipedge",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorshipedge"
},
{
"name": "nodes",
"description": "<p>A list of nodes.</p>",
"type": "[Sponsorship]",
"id": "sponsorship",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorship"
},
{
"name": "pageInfo",
"description": "<p>Information to aid in pagination.</p>",
"type": "PageInfo!",
"id": "pageinfo",
"kind": "objects",
"href": "/graphql/reference/objects#pageinfo"
},
{
"name": "totalCount",
"description": "<p>Identifies the total count of items in the connection.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
]
},
{
"name": "SponsorshipEdge",
"kind": "objects",
"id": "sponsorshipedge",
"href": "/graphql/reference/objects#sponsorshipedge",
"description": "<p>An edge in a connection.</p>",
"fields": [
{
"name": "cursor",
"description": "<p>A cursor for use in pagination.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "node",
"description": "<p>The item at the end of the edge.</p>",
"type": "Sponsorship",
"id": "sponsorship",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorship"
}
]
},
{
"name": "StargazerConnection",
"kind": "objects",
@ -53371,11 +53085,6 @@
"id": "repositoryowner",
"href": "/graphql/reference/interfaces#repositoryowner"
},
{
"name": "Sponsorable",
"id": "sponsorable",
"href": "/graphql/reference/interfaces#sponsorable"
},
{
"name": "UniformResourceLocatable",
"id": "uniformresourcelocatable",
@ -55036,137 +54745,6 @@
}
]
},
{
"name": "sponsorshipsAsMaintainer",
"description": "<p>This object's sponsorships as the maintainer.</p>",
"type": "SponsorshipConnection!",
"id": "sponsorshipconnection",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorshipconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "includePrivate",
"defaultValue": false,
"description": "<p>Whether or not to include private sponsorships in the result set.</p>",
"type": {
"name": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "orderBy",
"description": "<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>",
"type": {
"name": "SponsorshipOrder",
"id": "sponsorshiporder",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#sponsorshiporder"
}
}
]
},
{
"name": "sponsorshipsAsSponsor",
"description": "<p>This object's sponsorships as the sponsor.</p>",
"type": "SponsorshipConnection!",
"id": "sponsorshipconnection",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorshipconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "orderBy",
"description": "<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>",
"type": {
"name": "SponsorshipOrder",
"id": "sponsorshiporder",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#sponsorshiporder"
}
}
]
},
{
"name": "starredRepositories",
"description": "<p>Repositories the user has starred.</p>",
@ -58296,146 +57874,6 @@
}
]
},
{
"name": "Sponsorable",
"kind": "interfaces",
"id": "sponsorable",
"href": "/graphql/reference/interfaces#sponsorable",
"description": "<p>Entities that can be sponsored through GitHub Sponsors.</p>",
"fields": [
{
"name": "sponsorshipsAsMaintainer",
"description": "<p>This object's sponsorships as the maintainer.</p>",
"type": "SponsorshipConnection!",
"id": "sponsorshipconnection",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorshipconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "includePrivate",
"defaultValue": false,
"description": "<p>Whether or not to include private sponsorships in the result set.</p>",
"type": {
"name": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "orderBy",
"description": "<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>",
"type": {
"name": "SponsorshipOrder",
"id": "sponsorshiporder",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#sponsorshiporder"
}
}
]
},
{
"name": "sponsorshipsAsSponsor",
"description": "<p>This object's sponsorships as the sponsor.</p>",
"type": "SponsorshipConnection!",
"id": "sponsorshipconnection",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorshipconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "orderBy",
"description": "<p>Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.</p>",
"type": {
"name": "SponsorshipOrder",
"id": "sponsorshiporder",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#sponsorshiporder"
}
}
]
}
]
},
{
"name": "Starrable",
"kind": "interfaces",
@ -61656,23 +61094,6 @@
}
]
},
{
"name": "SponsorshipPrivacy",
"kind": "enums",
"id": "sponsorshipprivacy",
"href": "/graphql/reference/enums#sponsorshipprivacy",
"description": "<p>The privacy of a sponsorship.</p>",
"values": [
{
"name": "PRIVATE",
"description": "<p>Private.</p>"
},
{
"name": "PUBLIC",
"description": "<p>Public.</p>"
}
]
},
{
"name": "StarOrderField",
"kind": "enums",
@ -63490,25 +62911,6 @@
}
]
},
{
"name": "Sponsor",
"kind": "unions",
"id": "sponsor",
"href": "/graphql/reference/unions#sponsor",
"description": "<p>Entities that can sponsor others via GitHub Sponsors.</p>",
"possibleTypes": [
{
"name": "Organization",
"id": "organization",
"href": "/graphql/reference/objects#organization"
},
{
"name": "User",
"id": "user",
"href": "/graphql/reference/objects#user"
}
]
},
{
"name": "StatusCheckRollupContext",
"kind": "unions",
@ -68500,23 +67902,6 @@
}
]
},
{
"name": "SponsorshipOrder",
"kind": "inputObjects",
"id": "sponsorshiporder",
"href": "/graphql/reference/input-objects#sponsorshiporder",
"description": "<p>Ordering options for sponsorship connections.</p>",
"inputFields": [
{
"name": "direction",
"description": "<p>The ordering direction.</p>",
"type": "OrderDirection!",
"id": "orderdirection",
"kind": "enums",
"href": "/graphql/reference/enums#orderdirection"
}
]
},
{
"name": "StarOrder",
"kind": "inputObjects",

Просмотреть файл

@ -667,14 +667,6 @@
}
],
"2020-10-01": [
{
"location": "Sponsorship.sponsor",
"description": "<p><code>sponsor</code> will be removed. Use <code>Sponsorship.sponsorEntity</code> instead.</p>",
"reason": "<p><code>Sponsorship.sponsor</code> will be removed.</p>",
"date": "2020-10-01",
"criticality": "breaking",
"owner": "nholden"
},
{
"location": "RepositoryInvitationOrderField.INVITEE_LOGIN",
"description": "<p><code>INVITEE_LOGIN</code> will be removed.</p>",
@ -718,16 +710,6 @@
"owner": "BrentWheeldon"
}
],
"2020-04-01": [
{
"location": "Sponsorship.maintainer",
"description": "<p><code>maintainer</code> will be removed. Use <code>Sponsorship.sponsorable</code> instead.</p>",
"reason": "<p><code>Sponsorship.maintainer</code> will be removed.</p>",
"date": "2020-04-01",
"criticality": "breaking",
"owner": "antn"
}
],
"2020-01-01": [
{
"location": "UnassignedEvent.user",