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 """