Skip to content

Repo sync #39175

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/graphql/data/fpt/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Field <code>immutable</code> was added to object type <code>Release</code></p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2025-07-04"
},
{
"schemaChanges": [
{
Expand Down
5 changes: 5 additions & 0 deletions src/graphql/data/fpt/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -44682,6 +44682,11 @@ type Release implements Node & Reactable & UniformResourceLocatable {
"""
id: ID!

"""
Whether or not the release is immutable
"""
immutable: Boolean!

"""
Whether or not the release is a draft
"""
Expand Down
8 changes: 8 additions & 0 deletions src/graphql/data/fpt/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -58712,6 +58712,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
},
{
"name": "immutable",
"description": "<p>Whether or not the release is immutable.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "isDraft",
"description": "<p>Whether or not the release is a draft.</p>",
Expand Down
5 changes: 5 additions & 0 deletions src/graphql/data/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -44682,6 +44682,11 @@ type Release implements Node & Reactable & UniformResourceLocatable {
"""
id: ID!

"""
Whether or not the release is immutable
"""
immutable: Boolean!

"""
Whether or not the release is a draft
"""
Expand Down
8 changes: 8 additions & 0 deletions src/graphql/data/ghec/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -58712,6 +58712,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
},
{
"name": "immutable",
"description": "<p>Whether or not the release is immutable.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "isDraft",
"description": "<p>Whether or not the release is a draft.</p>",
Expand Down
Loading