@@ -19443,6 +19443,9 @@ type Sponsorship implements Node {
19443
19443
The entity that is sponsoring. Returns null if the sponsorship is private
19444
19444
"""
19445
19445
sponsor: User
19446
+
19447
+ """The associated sponsorship tier"""
19448
+ tier: SponsorsTier
19446
19449
}
19447
19450
19448
19451
"""The connection type for Sponsorship."""
@@ -19503,6 +19506,58 @@ type SponsorsListing implements Node {
19503
19506
slug: String!
19504
19507
}
19505
19508
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
+
19506
19561
"""The connection type for User."""
19507
19562
type StargazerConnection {
19508
19563
"""A list of edges."""
0 commit comments