Skip to content

Commit 1ebac32

Browse files
docs-botheiskr
andauthored
GraphQL schema update (#57275)
Co-authored-by: heiskr <1221423+heiskr@users.noreply.github.com>
1 parent c575469 commit 1ebac32

File tree

5 files changed

+66
-0
lines changed

5 files changed

+66
-0
lines changed

src/graphql/data/fpt/changelog.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"<p>Field <code>viewerCanSetFields</code> was added to object type <code>Issue</code></p>",
8+
"<p>Field <code>viewerCanSeeIssueFields</code> was added to object type <code>Repository</code></p>"
9+
]
10+
}
11+
],
12+
"previewChanges": [],
13+
"upcomingChanges": [],
14+
"date": "2025-08-26"
15+
},
216
{
317
"schemaChanges": [
418
{

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19546,6 +19546,11 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
1954619546
"""
1954719547
viewerCanReopen: Boolean!
1954819548

19549+
"""
19550+
Check if the current viewer can set fields on the issue.
19551+
"""
19552+
viewerCanSetFields: Boolean
19553+
1954919554
"""
1955019555
Check if the viewer is able to change their subscription status for the repository.
1955119556
"""
@@ -51312,6 +51317,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
5131251317
reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC."
5131351318
)
5131451319

51320+
"""
51321+
Indicates whether the current user can see issue fields in this repository
51322+
"""
51323+
viewerCanSeeIssueFields: Boolean!
51324+
5131551325
"""
5131651326
Check if the viewer is able to change their subscription status for the repository.
5131751327
"""

src/graphql/data/fpt/schema.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30735,6 +30735,14 @@
3073530735
"kind": "scalars",
3073630736
"href": "/graphql/reference/scalars#boolean"
3073730737
},
30738+
{
30739+
"name": "viewerCanSetFields",
30740+
"description": "<p>Check if the current viewer can set fields on the issue.</p>",
30741+
"type": "Boolean",
30742+
"id": "boolean",
30743+
"kind": "scalars",
30744+
"href": "/graphql/reference/scalars#boolean"
30745+
},
3073830746
{
3073930747
"name": "viewerCanSubscribe",
3074030748
"description": "<p>Check if the viewer is able to change their subscription status for the repository.</p>",
@@ -67952,6 +67960,14 @@
6795267960
"isDeprecated": true,
6795367961
"deprecationReason": "<p>Projects (classic) is being deprecated in favor of the new Projects experience, see: <a href=\"https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/\">https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/</a>. Removal on 2025-04-01 UTC.</p>"
6795467962
},
67963+
{
67964+
"name": "viewerCanSeeIssueFields",
67965+
"description": "<p>Indicates whether the current user can see issue fields in this repository.</p>",
67966+
"type": "Boolean!",
67967+
"id": "boolean",
67968+
"kind": "scalars",
67969+
"href": "/graphql/reference/scalars#boolean"
67970+
},
6795567971
{
6795667972
"name": "viewerCanSubscribe",
6795767973
"description": "<p>Check if the viewer is able to change their subscription status for the repository.</p>",

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19546,6 +19546,11 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
1954619546
"""
1954719547
viewerCanReopen: Boolean!
1954819548

19549+
"""
19550+
Check if the current viewer can set fields on the issue.
19551+
"""
19552+
viewerCanSetFields: Boolean
19553+
1954919554
"""
1955019555
Check if the viewer is able to change their subscription status for the repository.
1955119556
"""
@@ -51312,6 +51317,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
5131251317
reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC."
5131351318
)
5131451319

51320+
"""
51321+
Indicates whether the current user can see issue fields in this repository
51322+
"""
51323+
viewerCanSeeIssueFields: Boolean!
51324+
5131551325
"""
5131651326
Check if the viewer is able to change their subscription status for the repository.
5131751327
"""

src/graphql/data/ghec/schema.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30735,6 +30735,14 @@
3073530735
"kind": "scalars",
3073630736
"href": "/graphql/reference/scalars#boolean"
3073730737
},
30738+
{
30739+
"name": "viewerCanSetFields",
30740+
"description": "<p>Check if the current viewer can set fields on the issue.</p>",
30741+
"type": "Boolean",
30742+
"id": "boolean",
30743+
"kind": "scalars",
30744+
"href": "/graphql/reference/scalars#boolean"
30745+
},
3073830746
{
3073930747
"name": "viewerCanSubscribe",
3074030748
"description": "<p>Check if the viewer is able to change their subscription status for the repository.</p>",
@@ -67952,6 +67960,14 @@
6795267960
"isDeprecated": true,
6795367961
"deprecationReason": "<p>Projects (classic) is being deprecated in favor of the new Projects experience, see: <a href=\"https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/\">https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/</a>. Removal on 2025-04-01 UTC.</p>"
6795467962
},
67963+
{
67964+
"name": "viewerCanSeeIssueFields",
67965+
"description": "<p>Indicates whether the current user can see issue fields in this repository.</p>",
67966+
"type": "Boolean!",
67967+
"id": "boolean",
67968+
"kind": "scalars",
67969+
"href": "/graphql/reference/scalars#boolean"
67970+
},
6795567971
{
6795667972
"name": "viewerCanSubscribe",
6795767973
"description": "<p>Check if the viewer is able to change their subscription status for the repository.</p>",

0 commit comments

Comments
 (0)