Action ran graphql script"update-files"
This commit is contained in:
@@ -22646,6 +22646,42 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
|
||||
"""
|
||||
samlIdentityProvider: OrganizationIdentityProvider
|
||||
|
||||
"""
|
||||
List of sponsors for this user or organization.
|
||||
"""
|
||||
sponsors(
|
||||
"""
|
||||
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 sponsors returned from the connection.
|
||||
"""
|
||||
orderBy: SponsorOrder = {field: RELEVANCE, direction: DESC}
|
||||
|
||||
"""
|
||||
If given, will filter for sponsors at the given tier. Will only return
|
||||
sponsors whose tier the viewer is permitted to see.
|
||||
"""
|
||||
tierId: ID
|
||||
): SponsorConnection!
|
||||
|
||||
"""
|
||||
Events involving this sponsorable, such as new sponsorships.
|
||||
"""
|
||||
@@ -36903,6 +36939,76 @@ Entities that can sponsor others via GitHub Sponsors
|
||||
"""
|
||||
union Sponsor = Organization | User
|
||||
|
||||
"""
|
||||
The connection type for Sponsor.
|
||||
"""
|
||||
type SponsorConnection {
|
||||
"""
|
||||
A list of edges.
|
||||
"""
|
||||
edges: [SponsorEdge]
|
||||
|
||||
"""
|
||||
A list of nodes.
|
||||
"""
|
||||
nodes: [Sponsor]
|
||||
|
||||
"""
|
||||
Information to aid in pagination.
|
||||
"""
|
||||
pageInfo: PageInfo!
|
||||
|
||||
"""
|
||||
Identifies the total count of items in the connection.
|
||||
"""
|
||||
totalCount: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
Represents a user or organization who is sponsoring someone in GitHub Sponsors.
|
||||
"""
|
||||
type SponsorEdge {
|
||||
"""
|
||||
A cursor for use in pagination.
|
||||
"""
|
||||
cursor: String!
|
||||
|
||||
"""
|
||||
The item at the end of the edge.
|
||||
"""
|
||||
node: Sponsor
|
||||
}
|
||||
|
||||
"""
|
||||
Ordering options for connections to get sponsor entities for GitHub Sponsors.
|
||||
"""
|
||||
input SponsorOrder {
|
||||
"""
|
||||
The ordering direction.
|
||||
"""
|
||||
direction: OrderDirection!
|
||||
|
||||
"""
|
||||
The field to order sponsor entities by.
|
||||
"""
|
||||
field: SponsorOrderField!
|
||||
}
|
||||
|
||||
"""
|
||||
Properties by which sponsor connections can be ordered.
|
||||
"""
|
||||
enum SponsorOrderField {
|
||||
"""
|
||||
Order sponsorable entities by login (username).
|
||||
"""
|
||||
LOGIN
|
||||
|
||||
"""
|
||||
Order sponsors by their relevance to the viewer.
|
||||
"""
|
||||
RELEVANCE
|
||||
}
|
||||
|
||||
"""
|
||||
Entities that can be sponsored through GitHub Sponsors
|
||||
"""
|
||||
@@ -36927,6 +37033,42 @@ interface Sponsorable {
|
||||
"""
|
||||
isSponsoringViewer: Boolean!
|
||||
|
||||
"""
|
||||
List of sponsors for this user or organization.
|
||||
"""
|
||||
sponsors(
|
||||
"""
|
||||
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 sponsors returned from the connection.
|
||||
"""
|
||||
orderBy: SponsorOrder = {field: RELEVANCE, direction: DESC}
|
||||
|
||||
"""
|
||||
If given, will filter for sponsors at the given tier. Will only return
|
||||
sponsors whose tier the viewer is permitted to see.
|
||||
"""
|
||||
tierId: ID
|
||||
): SponsorConnection!
|
||||
|
||||
"""
|
||||
Events involving this sponsorable, such as new sponsorships.
|
||||
"""
|
||||
@@ -44127,6 +44269,42 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
||||
orderBy: SavedReplyOrder = {field: UPDATED_AT, direction: DESC}
|
||||
): SavedReplyConnection
|
||||
|
||||
"""
|
||||
List of sponsors for this user or organization.
|
||||
"""
|
||||
sponsors(
|
||||
"""
|
||||
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 sponsors returned from the connection.
|
||||
"""
|
||||
orderBy: SponsorOrder = {field: RELEVANCE, direction: DESC}
|
||||
|
||||
"""
|
||||
If given, will filter for sponsors at the given tier. Will only return
|
||||
sponsors whose tier the viewer is permitted to see.
|
||||
"""
|
||||
tierId: ID
|
||||
): SponsorConnection!
|
||||
|
||||
"""
|
||||
Events involving this sponsorable, such as new sponsorships.
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user