You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/graphql/data/fpt/changelog.json
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,25 @@
1
1
[
2
+
{
3
+
"schemaChanges": [
4
+
{
5
+
"title": "The GraphQL schema includes these changes:",
6
+
"changes": [
7
+
"<p>Field <code>fullDatabaseId</code> was added to object type <code>CheckAnnotation</code></p>"
8
+
]
9
+
}
10
+
],
11
+
"previewChanges": [],
12
+
"upcomingChanges": [
13
+
{
14
+
"title": "The following changes will be made to the schema:",
15
+
"changes": [
16
+
"<p>On member <code>Artifact.databaseId</code>:<code>databaseId</code> will be removed. Use <code>fullDatabaseId</code> instead. <strong>Effective 2027-01-01</strong>.</p>",
17
+
"<p>On member <code>CheckAnnotation.databaseId</code>:<code>databaseId</code> will be removed. Use <code>fullDatabaseId</code> instead. <strong>Effective 2027-01-01</strong>.</p>"
Copy file name to clipboardExpand all lines: src/graphql/data/fpt/schema.docs.graphql
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3498,6 +3498,14 @@ type CheckAnnotation {
3498
3498
Identifies the primary key from the database.
3499
3499
"""
3500
3500
databaseId: Int
3501
+
@deprecated(
3502
+
reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2027-01-01 UTC."
3503
+
)
3504
+
3505
+
"""
3506
+
Identifies the primary key from the database as a BigInt.
Copy file name to clipboardExpand all lines: src/graphql/data/fpt/schema.json
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13036,7 +13036,17 @@
13036
13036
"type": "Int",
13037
13037
"id": "int",
13038
13038
"kind": "scalars",
13039
-
"href": "/graphql/reference/scalars#int"
13039
+
"href": "/graphql/reference/scalars#int",
13040
+
"isDeprecated": true,
13041
+
"deprecationReason": "<p><code>databaseId</code> will be removed because it does not support 64-bit signed integer identifiers. Use <code>fullDatabaseId</code> instead. Removal on 2027-01-01 UTC.</p>"
13042
+
},
13043
+
{
13044
+
"name": "fullDatabaseId",
13045
+
"description": "<p>Identifies the primary key from the database as a BigInt.</p>",
Copy file name to clipboardExpand all lines: src/graphql/data/ghec/schema.docs.graphql
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3498,6 +3498,14 @@ type CheckAnnotation {
3498
3498
Identifies the primary key from the database.
3499
3499
"""
3500
3500
databaseId: Int
3501
+
@deprecated(
3502
+
reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2027-01-01 UTC."
3503
+
)
3504
+
3505
+
"""
3506
+
Identifies the primary key from the database as a BigInt.
Copy file name to clipboardExpand all lines: src/graphql/data/ghec/schema.json
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13036,7 +13036,17 @@
13036
13036
"type": "Int",
13037
13037
"id": "int",
13038
13038
"kind": "scalars",
13039
-
"href": "/graphql/reference/scalars#int"
13039
+
"href": "/graphql/reference/scalars#int",
13040
+
"isDeprecated": true,
13041
+
"deprecationReason": "<p><code>databaseId</code> will be removed because it does not support 64-bit signed integer identifiers. Use <code>fullDatabaseId</code> instead. Removal on 2027-01-01 UTC.</p>"
13042
+
},
13043
+
{
13044
+
"name": "fullDatabaseId",
13045
+
"description": "<p>Identifies the primary key from the database as a BigInt.</p>",
0 commit comments