diff --git a/schema.d.ts b/schema.d.ts index 96857eede..63385e8b4 100644 --- a/schema.d.ts +++ b/schema.d.ts @@ -9568,7 +9568,7 @@ export type LinkedBranch = Node & { ref?: Maybe; }; -/** The connection type for LinkedBranch. */ +/** A list of branches linked to an issue. */ export type LinkedBranchConnection = { __typename?: 'LinkedBranchConnection'; /** A list of edges. */ @@ -9676,7 +9676,7 @@ export type MannequinAvatarUrlArgs = { size?: InputMaybe; }; -/** The connection type for Mannequin. */ +/** A list of mannequins. */ export type MannequinConnection = { __typename?: 'MannequinConnection'; /** A list of edges. */ @@ -14948,7 +14948,7 @@ export type OrganizationInvitationType = /** The invitation was to an existing user. */ | 'USER'; -/** The connection type for User. */ +/** A list of users who belong to the organization. */ export type OrganizationMemberConnection = { __typename?: 'OrganizationMemberConnection'; /** A list of edges. */ @@ -16490,6 +16490,8 @@ export type ProjectV2Item = Node & { fieldValueByName?: Maybe; /** The field values that are set on the item. */ fieldValues: ProjectV2ItemFieldValueConnection; + /** Identifies the primary key from the database as a BigInt. */ + fullDatabaseId?: Maybe; /** The Node ID of the ProjectV2Item object */ id: Scalars['ID']['output']; /** Whether the item is archived. */ @@ -22159,7 +22161,7 @@ export type RepositoryMigration = Migration & Node & { warningsCount: Scalars['Int']['output']; }; -/** The connection type for RepositoryMigration. */ +/** A list of migrations. */ export type RepositoryMigrationConnection = { __typename?: 'RepositoryMigrationConnection'; /** A list of edges. */ @@ -23967,7 +23969,7 @@ export type SponsorAndLifetimeValueOrderField = /** Order results by the sponsor's relevance to the viewer. */ | 'SPONSOR_RELEVANCE'; -/** The connection type for Sponsor. */ +/** A list of users and organizations sponsoring someone via GitHub Sponsors. */ export type SponsorConnection = { __typename?: 'SponsorConnection'; /** A list of edges. */ @@ -25081,7 +25083,7 @@ export type Sponsorship = Node & { tierSelectedAt?: Maybe; }; -/** The connection type for Sponsorship. */ +/** A list of sponsorships either from the subject or received by the subject. */ export type SponsorshipConnection = { __typename?: 'SponsorshipConnection'; /** A list of edges. */ @@ -29454,7 +29456,7 @@ export type UserBlockedEvent = Node & { subject?: Maybe; }; -/** The connection type for User. */ +/** A list of users. */ export type UserConnection = { __typename?: 'UserConnection'; /** A list of edges. */ diff --git a/schema.graphql b/schema.graphql index f84f58c45..29bf8cc52 100644 --- a/schema.graphql +++ b/schema.graphql @@ -18939,7 +18939,7 @@ type LinkedBranch implements Node { } """ -The connection type for LinkedBranch. +A list of branches linked to an issue. """ type LinkedBranchConnection { """ @@ -19149,7 +19149,7 @@ type Mannequin implements Actor & Node & UniformResourceLocatable { } """ -The connection type for Mannequin. +A list of mannequins. """ type MannequinConnection { """ @@ -29056,7 +29056,7 @@ enum OrganizationInvitationType { } """ -The connection type for User. +A list of users who belong to the organization. """ type OrganizationMemberConnection { """ @@ -32321,6 +32321,11 @@ type ProjectV2Item implements Node { orderBy: ProjectV2ItemFieldValueOrder = {field: POSITION, direction: ASC} ): ProjectV2ItemFieldValueConnection! + """ + Identifies the primary key from the database as a BigInt. + """ + fullDatabaseId: BigInt + """ The Node ID of the ProjectV2Item object """ @@ -44535,7 +44540,7 @@ type RepositoryMigration implements Migration & Node { } """ -The connection type for RepositoryMigration. +A list of migrations. """ type RepositoryMigrationConnection { """ @@ -48106,7 +48111,7 @@ enum SponsorAndLifetimeValueOrderField { } """ -The connection type for Sponsor. +A list of users and organizations sponsoring someone via GitHub Sponsors. """ type SponsorConnection { """ @@ -50585,7 +50590,7 @@ type Sponsorship implements Node { } """ -The connection type for Sponsorship. +A list of sponsorships either from the subject or received by the subject. """ type SponsorshipConnection { """ @@ -59635,7 +59640,7 @@ type UserBlockedEvent implements Node { } """ -The connection type for User. +A list of users. """ type UserConnection { """ diff --git a/schema.json b/schema.json index 3f726ac33..254a2d7f1 100644 --- a/schema.json +++ b/schema.json @@ -48148,7 +48148,7 @@ { "kind": "OBJECT", "name": "LinkedBranchConnection", - "description": "The connection type for LinkedBranch.", + "description": "A list of branches linked to an issue.", "fields": [ { "name": "edges", @@ -48719,7 +48719,7 @@ { "kind": "OBJECT", "name": "MannequinConnection", - "description": "The connection type for Mannequin.", + "description": "A list of mannequins.", "fields": [ { "name": "edges", @@ -75898,7 +75898,7 @@ { "kind": "OBJECT", "name": "OrganizationMemberConnection", - "description": "The connection type for User.", + "description": "A list of users who belong to the organization.", "fields": [ { "name": "edges", @@ -84112,6 +84112,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "fullDatabaseId", + "description": "Identifies the primary key from the database as a BigInt.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": "The Node ID of the ProjectV2Item object", @@ -116186,7 +116198,7 @@ { "kind": "OBJECT", "name": "RepositoryMigrationConnection", - "description": "The connection type for RepositoryMigration.", + "description": "A list of migrations.", "fields": [ { "name": "edges", @@ -125036,7 +125048,7 @@ { "kind": "OBJECT", "name": "SponsorConnection", - "description": "The connection type for Sponsor.", + "description": "A list of users and organizations sponsoring someone via GitHub Sponsors.", "fields": [ { "name": "edges", @@ -129582,7 +129594,7 @@ { "kind": "OBJECT", "name": "SponsorshipConnection", - "description": "The connection type for Sponsorship.", + "description": "A list of sponsorships either from the subject or received by the subject.", "fields": [ { "name": "edges", @@ -152509,7 +152521,7 @@ { "kind": "OBJECT", "name": "UserConnection", - "description": "The connection type for User.", + "description": "A list of users.", "fields": [ { "name": "edges",