Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 62d60e4

Browse files
committed
⬆️ GraphQL schema
1 parent 0b58cd4 commit 62d60e4

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

graphql/schema.graphql

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19443,6 +19443,9 @@ type Sponsorship implements Node {
1944319443
The entity that is sponsoring. Returns null if the sponsorship is private
1944419444
"""
1944519445
sponsor: User
19446+
19447+
"""The associated sponsorship tier"""
19448+
tier: SponsorsTier
1944619449
}
1944719450

1944819451
"""The connection type for Sponsorship."""
@@ -19503,6 +19506,58 @@ type SponsorsListing implements Node {
1950319506
slug: String!
1950419507
}
1950519508

19509+
"""A GitHub Sponsors tier associated with a GitHub Sponsors listing."""
19510+
type SponsorsTier implements Node {
19511+
"""Identifies the date and time when the object was created."""
19512+
createdAt: DateTime!
19513+
19514+
"""The description of the tier."""
19515+
description: String!
19516+
19517+
"""The tier description rendered to HTML"""
19518+
descriptionHTML: HTML!
19519+
id: ID!
19520+
19521+
"""How much this tier costs per month in cents."""
19522+
monthlyPriceInCents: Int!
19523+
19524+
"""How much this tier costs per month in dollars."""
19525+
monthlyPriceInDollars: Int!
19526+
19527+
"""The name of the tier."""
19528+
name: String!
19529+
19530+
"""The sponsors listing that this tier belongs to."""
19531+
sponsorsListing: SponsorsListing!
19532+
19533+
"""Identifies the date and time when the object was last updated."""
19534+
updatedAt: DateTime!
19535+
}
19536+
19537+
"""The connection type for SponsorsTier."""
19538+
type SponsorsTierConnection {
19539+
"""A list of edges."""
19540+
edges: [SponsorsTierEdge]
19541+
19542+
"""A list of nodes."""
19543+
nodes: [SponsorsTier]
19544+
19545+
"""Information to aid in pagination."""
19546+
pageInfo: PageInfo!
19547+
19548+
"""Identifies the total count of items in the connection."""
19549+
totalCount: Int!
19550+
}
19551+
19552+
"""An edge in a connection."""
19553+
type SponsorsTierEdge {
19554+
"""A cursor for use in pagination."""
19555+
cursor: String!
19556+
19557+
"""The item at the end of the edge."""
19558+
node: SponsorsTier
19559+
}
19560+
1950619561
"""The connection type for User."""
1950719562
type StargazerConnection {
1950819563
"""A list of edges."""

0 commit comments

Comments
 (0)