Skip to content

Commit 5660f23

Browse files
GraphQL schema update (#62243)
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com>
1 parent 2b2b777 commit 5660f23

5 files changed

Lines changed: 50 additions & 0 deletions

File tree

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>Enum value 'ARCHIVED_EVENT<code>was added to enum</code>PullRequestTimelineItemsItemType'</p>",
8+
"<p>Enum value 'UNARCHIVED_EVENT<code>was added to enum</code>PullRequestTimelineItemsItemType'</p>"
9+
]
10+
}
11+
],
12+
"previewChanges": [],
13+
"upcomingChanges": [],
14+
"date": "2026-07-13"
15+
},
216
{
317
"schemaChanges": [
418
{

src/graphql/data/fpt/schema-other.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,10 @@
290290
"name": "ADDED_TO_PROJECT_V2_EVENT",
291291
"description": "<p>Represents a<code>added_to_project_v2</code>event on a given issue or pull request.</p>"
292292
},
293+
{
294+
"name": "ARCHIVED_EVENT",
295+
"description": "<p>Represents an<code>archived</code>event on a given pull request.</p>"
296+
},
293297
{
294298
"name": "ASSIGNED_EVENT",
295299
"description": "<p>Represents an<code>assigned</code>event on any assignable object.</p>"
@@ -562,6 +566,10 @@
562566
"name": "TRANSFERRED_EVENT",
563567
"description": "<p>Represents a<code>transferred</code>event on a given issue or pull request.</p>"
564568
},
569+
{
570+
"name": "UNARCHIVED_EVENT",
571+
"description": "<p>Represents an<code>unarchived</code>event on a given pull request.</p>"
572+
},
565573
{
566574
"name": "UNASSIGNED_EVENT",
567575
"description": "<p>Represents an<code>unassigned</code>event on any assignable object.</p>"

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45838,6 +45838,11 @@ enum PullRequestTimelineItemsItemType {
4583845838
"""
4583945839
ADDED_TO_PROJECT_V2_EVENT
4584045840

45841+
"""
45842+
Represents an 'archived' event on a given pull request.
45843+
"""
45844+
ARCHIVED_EVENT
45845+
4584145846
"""
4584245847
Represents an 'assigned' event on any assignable object.
4584345848
"""
@@ -46178,6 +46183,11 @@ enum PullRequestTimelineItemsItemType {
4617846183
"""
4617946184
TRANSFERRED_EVENT
4618046185

46186+
"""
46187+
Represents an 'unarchived' event on a given pull request.
46188+
"""
46189+
UNARCHIVED_EVENT
46190+
4618146191
"""
4618246192
Represents an 'unassigned' event on any assignable object.
4618346193
"""

src/graphql/data/ghec/schema-other.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,10 @@
290290
"name": "ADDED_TO_PROJECT_V2_EVENT",
291291
"description": "<p>Represents a<code>added_to_project_v2</code>event on a given issue or pull request.</p>"
292292
},
293+
{
294+
"name": "ARCHIVED_EVENT",
295+
"description": "<p>Represents an<code>archived</code>event on a given pull request.</p>"
296+
},
293297
{
294298
"name": "ASSIGNED_EVENT",
295299
"description": "<p>Represents an<code>assigned</code>event on any assignable object.</p>"
@@ -562,6 +566,10 @@
562566
"name": "TRANSFERRED_EVENT",
563567
"description": "<p>Represents a<code>transferred</code>event on a given issue or pull request.</p>"
564568
},
569+
{
570+
"name": "UNARCHIVED_EVENT",
571+
"description": "<p>Represents an<code>unarchived</code>event on a given pull request.</p>"
572+
},
565573
{
566574
"name": "UNASSIGNED_EVENT",
567575
"description": "<p>Represents an<code>unassigned</code>event on any assignable object.</p>"

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45838,6 +45838,11 @@ enum PullRequestTimelineItemsItemType {
4583845838
"""
4583945839
ADDED_TO_PROJECT_V2_EVENT
4584045840

45841+
"""
45842+
Represents an 'archived' event on a given pull request.
45843+
"""
45844+
ARCHIVED_EVENT
45845+
4584145846
"""
4584245847
Represents an 'assigned' event on any assignable object.
4584345848
"""
@@ -46178,6 +46183,11 @@ enum PullRequestTimelineItemsItemType {
4617846183
"""
4617946184
TRANSFERRED_EVENT
4618046185

46186+
"""
46187+
Represents an 'unarchived' event on a given pull request.
46188+
"""
46189+
UNARCHIVED_EVENT
46190+
4618146191
"""
4618246192
Represents an 'unassigned' event on any assignable object.
4618346193
"""

0 commit comments

Comments
 (0)