Skip to content
This repository was archived by the owner on Apr 1, 2024. It is now read-only.

Commit aabc080

Browse files
author
Create or Update Pull Request Action
committed
WIP: github schema.graphql changed - please review
1 parent d5f4f43 commit aabc080

File tree

1 file changed

+122
-0
lines changed

1 file changed

+122
-0
lines changed

example/github/schema.graphql

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23544,6 +23544,128 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
2354423544
orderBy: SponsorshipNewsletterOrder = {field: CREATED_AT, direction: DESC}
2354523545
): SponsorshipNewsletterConnection!
2354623546

23547+
"""
23548+
This object's sponsorships as the maintainer.
23549+
"""
23550+
sponsors(
23551+
"""
23552+
Returns the elements in the list that come after the specified cursor.
23553+
"""
23554+
after: String
23555+
23556+
"""
23557+
Returns the elements in the list that come before the specified cursor.
23558+
"""
23559+
before: String
23560+
23561+
"""
23562+
Returns the first _n_ elements from the list.
23563+
"""
23564+
first: Int
23565+
23566+
"""
23567+
Returns the last _n_ elements from the list.
23568+
"""
23569+
last: Int
23570+
23571+
"""
23572+
Ordering options for sponsors returned from the connection.
23573+
"""
23574+
orderBy: SponsorOrder = {field: RELEVANCE, direction: DESC}
23575+
23576+
"""
23577+
If given, will filter for sponsors at the given tier. Will only return
23578+
sponsors whose tier the viewer is permitted to see.
23579+
"""
23580+
tierId: ID
23581+
): SponsorConnection!
23582+
23583+
"""
23584+
Events involving this sponsorable, such as new sponsorships.
23585+
"""
23586+
sponsorsActivities(
23587+
"""
23588+
Returns the elements in the list that come after the specified cursor.
23589+
"""
23590+
after: String
23591+
23592+
"""
23593+
Returns the elements in the list that come before the specified cursor.
23594+
"""
23595+
before: String
23596+
23597+
"""
23598+
Returns the first _n_ elements from the list.
23599+
"""
23600+
first: Int
23601+
23602+
"""
23603+
Returns the last _n_ elements from the list.
23604+
"""
23605+
last: Int
23606+
23607+
"""
23608+
Ordering options for activity returned from the connection.
23609+
"""
23610+
orderBy: SponsorsActivityOrder = {field: TIMESTAMP, direction: DESC}
23611+
23612+
"""
23613+
Filter activities returned to only those that occurred in a given time range.
23614+
"""
23615+
period: SponsorsActivityPeriod = MONTH
23616+
): SponsorsActivityConnection!
23617+
23618+
"""
23619+
The GitHub Sponsors listing for this user or organization.
23620+
"""
23621+
sponsoring(
23622+
"""
23623+
Returns the elements in the list that come after the specified cursor.
23624+
"""
23625+
after: String
23626+
23627+
"""
23628+
The sponsorship from the viewer to this user/organization; that is, the
23629+
sponsorship where you're the sponsor. Only returns a sponsorship if it is active.
23630+
"""
23631+
sponsorshipForViewerAsSponsor: Sponsorship
23632+
23633+
"""
23634+
The sponsorship from this user/organization to the viewer; that is, the
23635+
sponsorship you're receiving. Only returns a sponsorship if it is active.
23636+
"""
23637+
sponsorshipForViewerAsSponsorable: Sponsorship
23638+
23639+
"""
23640+
List of sponsorship updates sent from this sponsorable to sponsors.
23641+
"""
23642+
sponsorshipNewsletters(
23643+
"""
23644+
Returns the elements in the list that come after the specified cursor.
23645+
"""
23646+
after: String
23647+
23648+
"""
23649+
Returns the elements in the list that come before the specified cursor.
23650+
"""
23651+
before: String
23652+
23653+
"""
23654+
Returns the first _n_ elements from the list.
23655+
"""
23656+
first: Int
23657+
23658+
"""
23659+
Returns the last _n_ elements from the list.
23660+
"""
23661+
last: Int
23662+
23663+
"""
23664+
Ordering options for sponsorship updates returned from the connection.
23665+
"""
23666+
orderBy: SponsorshipNewsletterOrder = {field: CREATED_AT, direction: DESC}
23667+
): SponsorshipNewsletterConnection!
23668+
2354723669
"""
2354823670
This object's sponsorships as the maintainer.
2354923671
"""

0 commit comments

Comments
 (0)