From 3d69c992aa81896eb226bc69b299393e2b3265f7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 31 May 2026 00:55:53 +0000 Subject: [PATCH] chore: update GitHub GraphQL schema --- schema/github/schema.graphql | 40 ++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/schema/github/schema.graphql b/schema/github/schema.graphql index 7208150e..817717c9 100644 --- a/schema/github/schema.graphql +++ b/schema/github/schema.graphql @@ -20992,6 +20992,11 @@ interface IssueFieldCommon { """ description: String + """ + Identifies the primary key from the database as a BigInt. + """ + fullDatabaseId: BigInt + """ The issue field's name. """ @@ -21087,6 +21092,11 @@ type IssueFieldDate implements IssueFieldCommon & Node { """ description: String + """ + Identifies the primary key from the database as a BigInt. + """ + fullDatabaseId: BigInt + """ The Node ID of the IssueFieldDate object """ @@ -21142,6 +21152,11 @@ type IssueFieldNumber implements IssueFieldCommon & Node { """ description: String + """ + Identifies the primary key from the database as a BigInt. + """ + fullDatabaseId: BigInt + """ The Node ID of the IssueFieldNumber object """ @@ -21252,6 +21267,11 @@ type IssueFieldSingleSelect implements IssueFieldCommon & Node { """ description: String + """ + Identifies the primary key from the database as a BigInt. + """ + fullDatabaseId: BigInt + """ The Node ID of the IssueFieldSingleSelect object """ @@ -21282,11 +21302,21 @@ type IssueFieldSingleSelectOption implements Node { """ color: IssueFieldSingleSelectOptionColor! + """ + Identifies the primary key from the database. + """ + databaseId: Int + """ The option's plain-text description. """ description: String + """ + Identifies the primary key from the database as a BigInt. + """ + fullDatabaseId: BigInt + """ The Node ID of the IssueFieldSingleSelectOption object """ @@ -21432,6 +21462,11 @@ type IssueFieldText implements IssueFieldCommon & Node { """ description: String + """ + Identifies the primary key from the database as a BigInt. + """ + fullDatabaseId: BigInt + """ The Node ID of the IssueFieldText object """ @@ -48450,6 +48485,11 @@ enum ReportedContentClassifiers { """ DUPLICATE + """ + A low quality piece of content + """ + LOW_QUALITY + """ An irrelevant piece of content """