Skip to content

Commit 6c7d607

Browse files
GraphQL schema update (#61418)
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com>
1 parent 5cb46c0 commit 6c7d607

5 files changed

Lines changed: 187 additions & 0 deletions

File tree

src/graphql/data/fpt/changelog.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"<p>Field <code>fullDatabaseId</code> was added to interface <code>IssueFieldCommon</code></p>",
8+
"<p>Field <code>fullDatabaseId</code> was added to object type <code>IssueFieldDate</code></p>",
9+
"<p>Field <code>fullDatabaseId</code> was added to object type <code>IssueFieldNumber</code></p>",
10+
"<p>Field <code>fullDatabaseId</code> was added to object type <code>IssueFieldSingleSelect</code></p>",
11+
"<p>Field <code>databaseId</code> was added to object type <code>IssueFieldSingleSelectOption</code></p>",
12+
"<p>Field <code>fullDatabaseId</code> was added to object type <code>IssueFieldSingleSelectOption</code></p>",
13+
"<p>Field <code>fullDatabaseId</code> was added to object type <code>IssueFieldText</code></p>"
14+
]
15+
}
16+
],
17+
"previewChanges": [],
18+
"upcomingChanges": [],
19+
"date": "2026-05-26"
20+
},
221
{
322
"schemaChanges": [
423
{

src/graphql/data/fpt/schema.docs.graphql

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21153,6 +21153,11 @@ interface IssueFieldCommon @docsCategory(name: "issues") {
2115321153
"""
2115421154
description: String
2115521155

21156+
"""
21157+
Identifies the primary key from the database as a BigInt.
21158+
"""
21159+
fullDatabaseId: BigInt
21160+
2115621161
"""
2115721162
The issue field's name.
2115821163
"""
@@ -21248,6 +21253,11 @@ type IssueFieldDate implements IssueFieldCommon & Node @docsCategory(name: "issu
2124821253
"""
2124921254
description: String
2125021255

21256+
"""
21257+
Identifies the primary key from the database as a BigInt.
21258+
"""
21259+
fullDatabaseId: BigInt
21260+
2125121261
"""
2125221262
The Node ID of the IssueFieldDate object
2125321263
"""
@@ -21303,6 +21313,11 @@ type IssueFieldNumber implements IssueFieldCommon & Node @docsCategory(name: "is
2130321313
"""
2130421314
description: String
2130521315

21316+
"""
21317+
Identifies the primary key from the database as a BigInt.
21318+
"""
21319+
fullDatabaseId: BigInt
21320+
2130621321
"""
2130721322
The Node ID of the IssueFieldNumber object
2130821323
"""
@@ -21413,6 +21428,11 @@ type IssueFieldSingleSelect implements IssueFieldCommon & Node @docsCategory(nam
2141321428
"""
2141421429
description: String
2141521430

21431+
"""
21432+
Identifies the primary key from the database as a BigInt.
21433+
"""
21434+
fullDatabaseId: BigInt
21435+
2141621436
"""
2141721437
The Node ID of the IssueFieldSingleSelect object
2141821438
"""
@@ -21443,11 +21463,21 @@ type IssueFieldSingleSelectOption implements Node @docsCategory(name: "issues")
2144321463
"""
2144421464
color: IssueFieldSingleSelectOptionColor!
2144521465

21466+
"""
21467+
Identifies the primary key from the database.
21468+
"""
21469+
databaseId: Int
21470+
2144621471
"""
2144721472
The option's plain-text description.
2144821473
"""
2144921474
description: String
2145021475

21476+
"""
21477+
Identifies the primary key from the database as a BigInt.
21478+
"""
21479+
fullDatabaseId: BigInt
21480+
2145121481
"""
2145221482
The Node ID of the IssueFieldSingleSelectOption object
2145321483
"""
@@ -21593,6 +21623,11 @@ type IssueFieldText implements IssueFieldCommon & Node @docsCategory(name: "issu
2159321623
"""
2159421624
description: String
2159521625

21626+
"""
21627+
Identifies the primary key from the database as a BigInt.
21628+
"""
21629+
fullDatabaseId: BigInt
21630+
2159621631
"""
2159721632
The Node ID of the IssueFieldText object
2159821633
"""

src/graphql/data/fpt/schema.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29782,6 +29782,13 @@
2978229782
"id": "string",
2978329783
"href": "/graphql/reference/scalars#string"
2978429784
},
29785+
{
29786+
"name": "fullDatabaseId",
29787+
"description": "<p>Identifies the primary key from the database as a BigInt.</p>",
29788+
"type": "BigInt",
29789+
"id": "bigint",
29790+
"href": "/graphql/reference/scalars#bigint"
29791+
},
2978529792
{
2978629793
"name": "id",
2978729794
"description": "<p>The Node ID of the IssueFieldDate object.</p>",
@@ -29887,6 +29894,13 @@
2988729894
"id": "string",
2988829895
"href": "/graphql/reference/scalars#string"
2988929896
},
29897+
{
29898+
"name": "fullDatabaseId",
29899+
"description": "<p>Identifies the primary key from the database as a BigInt.</p>",
29900+
"type": "BigInt",
29901+
"id": "bigint",
29902+
"href": "/graphql/reference/scalars#bigint"
29903+
},
2989029904
{
2989129905
"name": "id",
2989229906
"description": "<p>The Node ID of the IssueFieldNumber object.</p>",
@@ -30036,6 +30050,13 @@
3003630050
"id": "string",
3003730051
"href": "/graphql/reference/scalars#string"
3003830052
},
30053+
{
30054+
"name": "fullDatabaseId",
30055+
"description": "<p>Identifies the primary key from the database as a BigInt.</p>",
30056+
"type": "BigInt",
30057+
"id": "bigint",
30058+
"href": "/graphql/reference/scalars#bigint"
30059+
},
3003930060
{
3004030061
"name": "id",
3004130062
"description": "<p>The Node ID of the IssueFieldSingleSelect object.</p>",
@@ -30087,13 +30108,27 @@
3008730108
"id": "issuefieldsingleselectoptioncolor",
3008830109
"href": "/graphql/reference/enums#issuefieldsingleselectoptioncolor"
3008930110
},
30111+
{
30112+
"name": "databaseId",
30113+
"description": "<p>Identifies the primary key from the database.</p>",
30114+
"type": "Int",
30115+
"id": "int",
30116+
"href": "/graphql/reference/scalars#int"
30117+
},
3009030118
{
3009130119
"name": "description",
3009230120
"description": "<p>The option's plain-text description.</p>",
3009330121
"type": "String",
3009430122
"id": "string",
3009530123
"href": "/graphql/reference/scalars#string"
3009630124
},
30125+
{
30126+
"name": "fullDatabaseId",
30127+
"description": "<p>Identifies the primary key from the database as a BigInt.</p>",
30128+
"type": "BigInt",
30129+
"id": "bigint",
30130+
"href": "/graphql/reference/scalars#bigint"
30131+
},
3009730132
{
3009830133
"name": "id",
3009930134
"description": "<p>The Node ID of the IssueFieldSingleSelectOption object.</p>",
@@ -30227,6 +30262,13 @@
3022730262
"id": "string",
3022830263
"href": "/graphql/reference/scalars#string"
3022930264
},
30265+
{
30266+
"name": "fullDatabaseId",
30267+
"description": "<p>Identifies the primary key from the database as a BigInt.</p>",
30268+
"type": "BigInt",
30269+
"id": "bigint",
30270+
"href": "/graphql/reference/scalars#bigint"
30271+
},
3023030272
{
3023130273
"name": "id",
3023230274
"description": "<p>The Node ID of the IssueFieldText object.</p>",
@@ -78816,6 +78858,13 @@
7881678858
"id": "string",
7881778859
"href": "/graphql/reference/scalars#string"
7881878860
},
78861+
{
78862+
"name": "fullDatabaseId",
78863+
"description": "<p>Identifies the primary key from the database as a BigInt.</p>",
78864+
"type": "BigInt",
78865+
"id": "bigint",
78866+
"href": "/graphql/reference/scalars#bigint"
78867+
},
7881978868
{
7882078869
"name": "name",
7882178870
"description": "<p>The issue field's name.</p>",

src/graphql/data/ghec/schema.docs.graphql

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21153,6 +21153,11 @@ interface IssueFieldCommon @docsCategory(name: "issues") {
2115321153
"""
2115421154
description: String
2115521155

21156+
"""
21157+
Identifies the primary key from the database as a BigInt.
21158+
"""
21159+
fullDatabaseId: BigInt
21160+
2115621161
"""
2115721162
The issue field's name.
2115821163
"""
@@ -21248,6 +21253,11 @@ type IssueFieldDate implements IssueFieldCommon & Node @docsCategory(name: "issu
2124821253
"""
2124921254
description: String
2125021255

21256+
"""
21257+
Identifies the primary key from the database as a BigInt.
21258+
"""
21259+
fullDatabaseId: BigInt
21260+
2125121261
"""
2125221262
The Node ID of the IssueFieldDate object
2125321263
"""
@@ -21303,6 +21313,11 @@ type IssueFieldNumber implements IssueFieldCommon & Node @docsCategory(name: "is
2130321313
"""
2130421314
description: String
2130521315

21316+
"""
21317+
Identifies the primary key from the database as a BigInt.
21318+
"""
21319+
fullDatabaseId: BigInt
21320+
2130621321
"""
2130721322
The Node ID of the IssueFieldNumber object
2130821323
"""
@@ -21413,6 +21428,11 @@ type IssueFieldSingleSelect implements IssueFieldCommon & Node @docsCategory(nam
2141321428
"""
2141421429
description: String
2141521430

21431+
"""
21432+
Identifies the primary key from the database as a BigInt.
21433+
"""
21434+
fullDatabaseId: BigInt
21435+
2141621436
"""
2141721437
The Node ID of the IssueFieldSingleSelect object
2141821438
"""
@@ -21443,11 +21463,21 @@ type IssueFieldSingleSelectOption implements Node @docsCategory(name: "issues")
2144321463
"""
2144421464
color: IssueFieldSingleSelectOptionColor!
2144521465

21466+
"""
21467+
Identifies the primary key from the database.
21468+
"""
21469+
databaseId: Int
21470+
2144621471
"""
2144721472
The option's plain-text description.
2144821473
"""
2144921474
description: String
2145021475

21476+
"""
21477+
Identifies the primary key from the database as a BigInt.
21478+
"""
21479+
fullDatabaseId: BigInt
21480+
2145121481
"""
2145221482
The Node ID of the IssueFieldSingleSelectOption object
2145321483
"""
@@ -21593,6 +21623,11 @@ type IssueFieldText implements IssueFieldCommon & Node @docsCategory(name: "issu
2159321623
"""
2159421624
description: String
2159521625

21626+
"""
21627+
Identifies the primary key from the database as a BigInt.
21628+
"""
21629+
fullDatabaseId: BigInt
21630+
2159621631
"""
2159721632
The Node ID of the IssueFieldText object
2159821633
"""

src/graphql/data/ghec/schema.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29782,6 +29782,13 @@
2978229782
"id": "string",
2978329783
"href": "/graphql/reference/scalars#string"
2978429784
},
29785+
{
29786+
"name": "fullDatabaseId",
29787+
"description": "<p>Identifies the primary key from the database as a BigInt.</p>",
29788+
"type": "BigInt",
29789+
"id": "bigint",
29790+
"href": "/graphql/reference/scalars#bigint"
29791+
},
2978529792
{
2978629793
"name": "id",
2978729794
"description": "<p>The Node ID of the IssueFieldDate object.</p>",
@@ -29887,6 +29894,13 @@
2988729894
"id": "string",
2988829895
"href": "/graphql/reference/scalars#string"
2988929896
},
29897+
{
29898+
"name": "fullDatabaseId",
29899+
"description": "<p>Identifies the primary key from the database as a BigInt.</p>",
29900+
"type": "BigInt",
29901+
"id": "bigint",
29902+
"href": "/graphql/reference/scalars#bigint"
29903+
},
2989029904
{
2989129905
"name": "id",
2989229906
"description": "<p>The Node ID of the IssueFieldNumber object.</p>",
@@ -30036,6 +30050,13 @@
3003630050
"id": "string",
3003730051
"href": "/graphql/reference/scalars#string"
3003830052
},
30053+
{
30054+
"name": "fullDatabaseId",
30055+
"description": "<p>Identifies the primary key from the database as a BigInt.</p>",
30056+
"type": "BigInt",
30057+
"id": "bigint",
30058+
"href": "/graphql/reference/scalars#bigint"
30059+
},
3003930060
{
3004030061
"name": "id",
3004130062
"description": "<p>The Node ID of the IssueFieldSingleSelect object.</p>",
@@ -30087,13 +30108,27 @@
3008730108
"id": "issuefieldsingleselectoptioncolor",
3008830109
"href": "/graphql/reference/enums#issuefieldsingleselectoptioncolor"
3008930110
},
30111+
{
30112+
"name": "databaseId",
30113+
"description": "<p>Identifies the primary key from the database.</p>",
30114+
"type": "Int",
30115+
"id": "int",
30116+
"href": "/graphql/reference/scalars#int"
30117+
},
3009030118
{
3009130119
"name": "description",
3009230120
"description": "<p>The option's plain-text description.</p>",
3009330121
"type": "String",
3009430122
"id": "string",
3009530123
"href": "/graphql/reference/scalars#string"
3009630124
},
30125+
{
30126+
"name": "fullDatabaseId",
30127+
"description": "<p>Identifies the primary key from the database as a BigInt.</p>",
30128+
"type": "BigInt",
30129+
"id": "bigint",
30130+
"href": "/graphql/reference/scalars#bigint"
30131+
},
3009730132
{
3009830133
"name": "id",
3009930134
"description": "<p>The Node ID of the IssueFieldSingleSelectOption object.</p>",
@@ -30227,6 +30262,13 @@
3022730262
"id": "string",
3022830263
"href": "/graphql/reference/scalars#string"
3022930264
},
30265+
{
30266+
"name": "fullDatabaseId",
30267+
"description": "<p>Identifies the primary key from the database as a BigInt.</p>",
30268+
"type": "BigInt",
30269+
"id": "bigint",
30270+
"href": "/graphql/reference/scalars#bigint"
30271+
},
3023030272
{
3023130273
"name": "id",
3023230274
"description": "<p>The Node ID of the IssueFieldText object.</p>",
@@ -78816,6 +78858,13 @@
7881678858
"id": "string",
7881778859
"href": "/graphql/reference/scalars#string"
7881878860
},
78861+
{
78862+
"name": "fullDatabaseId",
78863+
"description": "<p>Identifies the primary key from the database as a BigInt.</p>",
78864+
"type": "BigInt",
78865+
"id": "bigint",
78866+
"href": "/graphql/reference/scalars#bigint"
78867+
},
7881978868
{
7882078869
"name": "name",
7882178870
"description": "<p>The issue field's name.</p>",

0 commit comments

Comments
 (0)