1
0
mirror of synced 2026-01-05 21:04:17 -05:00

GraphQL schema update

This commit is contained in:
Octomerger Bot
2021-03-28 13:51:22 +10:00
committed by GitHub
6 changed files with 72 additions and 2 deletions

View File

@@ -31492,6 +31492,11 @@ type Sponsorship implements Node {
createdAt: DateTime!
id: ID!
"""
Whether this sponsorship represents a one-time payment versus a recurring sponsorship.
"""
isOneTimePayment: Boolean!
"""
The entity that is being sponsored
"""

View File

@@ -34242,6 +34242,13 @@ type SponsorsTier implements Node {
"""
adminInfo: SponsorsTierAdminInfo
"""
Get a different tier for this tier's maintainer that is at the same frequency
as this tier but with a lesser cost. Returns the published tier with the
monthly price closest to this tier's without going over.
"""
closestLesserValueTier: SponsorsTier
"""
Identifies the date and time when the object was created.
"""
@@ -34258,6 +34265,12 @@ type SponsorsTier implements Node {
descriptionHTML: HTML!
id: ID!
"""
Whether this tier was chosen at checkout time by the sponsor rather than
defined ahead of time by the maintainer who manages the Sponsors listing.
"""
isCustomAmount: Boolean!
"""
Whether this tier is only for use with one-time sponsorships.
"""
@@ -34410,6 +34423,11 @@ type Sponsorship implements Node {
createdAt: DateTime!
id: ID!
"""
Whether this sponsorship represents a one-time payment versus a recurring sponsorship.
"""
isOneTimePayment: Boolean!
"""
The entity that is being sponsored
"""

View File

@@ -1,4 +1,19 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Field `closestLesserValueTier` was added to object type `SponsorsTier`",
"Field `isCustomAmount` was added to object type `SponsorsTier`",
"Field `isOneTimePayment` was added to object type `Sponsorship`"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2021-03-27"
},
{
"schemaChanges": [
{

File diff suppressed because one or more lines are too long

View File

@@ -48237,6 +48237,14 @@
"kind": "objects",
"href": "/graphql/reference/objects#sponsorstieradmininfo"
},
{
"name": "closestLesserValueTier",
"description": "<p>Get a different tier for this tier's maintainer that is at the same frequency\nas this tier but with a lesser cost. Returns the published tier with the\nmonthly price closest to this tier's without going over.</p>",
"type": "SponsorsTier",
"id": "sponsorstier",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorstier"
},
{
"name": "createdAt",
"description": "<p>Identifies the date and time when the object was created.</p>",
@@ -48261,6 +48269,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#html"
},
{
"name": "isCustomAmount",
"description": "<p>Whether this tier was chosen at checkout time by the sponsor rather than\ndefined ahead of time by the maintainer who manages the Sponsors listing.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "isOneTime",
"description": "<p>Whether this tier is only for use with one-time sponsorships.</p>",
@@ -48479,6 +48495,14 @@
"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>",

View File

@@ -44841,6 +44841,14 @@
"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>",