@@ -20992,6 +20992,11 @@ interface IssueFieldCommon {
2099220992 """
2099320993 description: String
2099420994
20995+ """
20996+ Identifies the primary key from the database as a BigInt.
20997+ """
20998+ fullDatabaseId: BigInt
20999+
2099521000 """
2099621001 The issue field's name.
2099721002 """
@@ -21087,6 +21092,11 @@ type IssueFieldDate implements IssueFieldCommon & Node {
2108721092 """
2108821093 description: String
2108921094
21095+ """
21096+ Identifies the primary key from the database as a BigInt.
21097+ """
21098+ fullDatabaseId: BigInt
21099+
2109021100 """
2109121101 The Node ID of the IssueFieldDate object
2109221102 """
@@ -21142,6 +21152,11 @@ type IssueFieldNumber implements IssueFieldCommon & Node {
2114221152 """
2114321153 description: String
2114421154
21155+ """
21156+ Identifies the primary key from the database as a BigInt.
21157+ """
21158+ fullDatabaseId: BigInt
21159+
2114521160 """
2114621161 The Node ID of the IssueFieldNumber object
2114721162 """
@@ -21252,6 +21267,11 @@ type IssueFieldSingleSelect implements IssueFieldCommon & Node {
2125221267 """
2125321268 description: String
2125421269
21270+ """
21271+ Identifies the primary key from the database as a BigInt.
21272+ """
21273+ fullDatabaseId: BigInt
21274+
2125521275 """
2125621276 The Node ID of the IssueFieldSingleSelect object
2125721277 """
@@ -21282,11 +21302,21 @@ type IssueFieldSingleSelectOption implements Node {
2128221302 """
2128321303 color: IssueFieldSingleSelectOptionColor!
2128421304
21305+ """
21306+ Identifies the primary key from the database.
21307+ """
21308+ databaseId: Int
21309+
2128521310 """
2128621311 The option's plain-text description.
2128721312 """
2128821313 description: String
2128921314
21315+ """
21316+ Identifies the primary key from the database as a BigInt.
21317+ """
21318+ fullDatabaseId: BigInt
21319+
2129021320 """
2129121321 The Node ID of the IssueFieldSingleSelectOption object
2129221322 """
@@ -21432,6 +21462,11 @@ type IssueFieldText implements IssueFieldCommon & Node {
2143221462 """
2143321463 description: String
2143421464
21465+ """
21466+ Identifies the primary key from the database as a BigInt.
21467+ """
21468+ fullDatabaseId: BigInt
21469+
2143521470 """
2143621471 The Node ID of the IssueFieldText object
2143721472 """
@@ -48450,6 +48485,11 @@ enum ReportedContentClassifiers {
4845048485 """
4845148486 DUPLICATE
4845248487
48488+ """
48489+ A low quality piece of content
48490+ """
48491+ LOW_QUALITY
48492+
4845348493 """
4845448494 An irrelevant piece of content
4845548495 """
0 commit comments