diff --git a/schema.d.ts b/schema.d.ts index 51de7579f..f6c0056d4 100644 --- a/schema.d.ts +++ b/schema.d.ts @@ -17441,7 +17441,10 @@ export type PullRequest = Assignable & Closable & Comment & Labelable & Lockable createdAt: Scalars['DateTime']['output']; /** Check if this comment was created via an email reply. */ createdViaEmail: Scalars['Boolean']['output']; - /** Identifies the primary key from the database. */ + /** + * Identifies the primary key from the database. + * @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC. + */ databaseId?: Maybe; /** The number of deletions in this pull request. */ deletions: Scalars['Int']['output']; @@ -17449,6 +17452,8 @@ export type PullRequest = Assignable & Closable & Comment & Labelable & Lockable editor?: Maybe; /** Lists the files changed within this pull request. */ files?: Maybe; + /** Identifies the primary key from the database as a BigInt. */ + fullDatabaseId?: Maybe; /** Identifies the head Ref associated with the pull request. */ headRef?: Maybe; /** Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted. */ @@ -18050,10 +18055,15 @@ export type PullRequestReview = Comment & Deletable & Minimizable & Node & React createdAt: Scalars['DateTime']['output']; /** Check if this comment was created via an email reply. */ createdViaEmail: Scalars['Boolean']['output']; - /** Identifies the primary key from the database. */ + /** + * Identifies the primary key from the database. + * @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC. + */ databaseId?: Maybe; /** The actor who edited the comment. */ editor?: Maybe; + /** Identifies the primary key from the database as a BigInt. */ + fullDatabaseId?: Maybe; /** The Node ID of the PullRequestReview object */ id: Scalars['ID']['output']; /** Check if this comment was edited and includes an edit with the creation data */ @@ -18163,7 +18173,10 @@ export type PullRequestReviewComment = Comment & Deletable & Minimizable & Node createdAt: Scalars['DateTime']['output']; /** Check if this comment was created via an email reply. */ createdViaEmail: Scalars['Boolean']['output']; - /** Identifies the primary key from the database. */ + /** + * Identifies the primary key from the database. + * @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC. + */ databaseId?: Maybe; /** The diff hunk to which the comment applies. */ diffHunk: Scalars['String']['output']; @@ -18171,6 +18184,8 @@ export type PullRequestReviewComment = Comment & Deletable & Minimizable & Node draftedAt: Scalars['DateTime']['output']; /** The actor who edited the comment. */ editor?: Maybe; + /** Identifies the primary key from the database as a BigInt. */ + fullDatabaseId?: Maybe; /** The Node ID of the PullRequestReviewComment object */ id: Scalars['ID']['output']; /** Check if this comment was edited and includes an edit with the creation data */ diff --git a/schema.graphql b/schema.graphql index 405ac4d51..b4139444c 100644 --- a/schema.graphql +++ b/schema.graphql @@ -34332,7 +34332,7 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab """ Identifies the primary key from the database. """ - databaseId: Int + databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.") """ The number of deletions in this pull request. @@ -34369,6 +34369,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab last: Int ): PullRequestChangedFileConnection + """ + Identifies the primary key from the database as a BigInt. + """ + fullDatabaseId: BigInt + """ Identifies the head Ref associated with the pull request. """ @@ -35601,13 +35606,18 @@ type PullRequestReview implements Comment & Deletable & Minimizable & Node & Rea """ Identifies the primary key from the database. """ - databaseId: Int + databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.") """ The actor who edited the comment. """ editor: Actor + """ + Identifies the primary key from the database as a BigInt. + """ + fullDatabaseId: BigInt + """ The Node ID of the PullRequestReview object """ @@ -35843,7 +35853,7 @@ type PullRequestReviewComment implements Comment & Deletable & Minimizable & Nod """ Identifies the primary key from the database. """ - databaseId: Int + databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.") """ The diff hunk to which the comment applies. @@ -35860,6 +35870,11 @@ type PullRequestReviewComment implements Comment & Deletable & Minimizable & Nod """ editor: Actor + """ + Identifies the primary key from the database as a BigInt. + """ + fullDatabaseId: BigInt + """ The Node ID of the PullRequestReviewComment object """