Skip to content

Commit cc15977

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

File tree

5 files changed

+213
-2
lines changed

5 files changed

+213
-2
lines changed

src/graphql/data/fpt/changelog.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"<p>Type <code>Agentic</code> was added</p>",
8+
"<p><code>User</code> object implements <code>Agentic</code> interface</p>",
9+
"<p>Field <code>viewerCopilotAgentCreatesChannel</code> was added to object type <code>User</code></p>",
10+
"<p>Field <code>viewerCopilotAgentLogUpdatesChannel</code> was added to object type <code>User</code></p>",
11+
"<p>Field <code>viewerCopilotAgentUpdatesChannel</code> was added to object type <code>User</code></p>"
12+
]
13+
}
14+
],
15+
"previewChanges": [],
16+
"upcomingChanges": [],
17+
"date": "2025-11-14"
18+
},
219
{
320
"schemaChanges": [
421
{

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

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1416,6 +1416,26 @@ type AddedToProjectV2Event implements Node & ProjectV2Event {
14161416
wasAutomated: Boolean!
14171417
}
14181418

1419+
"""
1420+
Copilot Agentic fields in context of the current viewer.
1421+
"""
1422+
interface Agentic {
1423+
"""
1424+
Channel value for subscribing to live updates for session creations.
1425+
"""
1426+
viewerCopilotAgentCreatesChannel: String
1427+
1428+
"""
1429+
Channel value for subscribing to live updates for session log updates.
1430+
"""
1431+
viewerCopilotAgentLogUpdatesChannel: String
1432+
1433+
"""
1434+
Channel value for subscribing to live updates for session updates.
1435+
"""
1436+
viewerCopilotAgentUpdatesChannel: String
1437+
}
1438+
14191439
"""
14201440
An announcement banner for an enterprise or organization.
14211441
"""
@@ -67344,7 +67364,7 @@ type UpdateUserListsForItemPayload {
6734467364
"""
6734567365
A user is an individual's account on GitHub that owns repositories and can make new content.
6734667366
"""
67347-
type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV2Owner & ProjectV2Recent & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
67367+
type User implements Actor & Agentic & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV2Owner & ProjectV2Recent & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
6734867368
"""
6734967369
Determine if this repository owner has any items that can be pinned to their profile.
6735067370
"""
@@ -68951,6 +68971,21 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
6895168971
"""
6895268972
viewerCanSponsor: Boolean!
6895368973

68974+
"""
68975+
Channel value for subscribing to live updates for session creations.
68976+
"""
68977+
viewerCopilotAgentCreatesChannel: String
68978+
68979+
"""
68980+
Channel value for subscribing to live updates for session log updates.
68981+
"""
68982+
viewerCopilotAgentLogUpdatesChannel: String
68983+
68984+
"""
68985+
Channel value for subscribing to live updates for session updates.
68986+
"""
68987+
viewerCopilotAgentUpdatesChannel: String
68988+
6895468989
"""
6895568990
Whether or not this user is followed by the viewer. Inverse of isFollowingViewer.
6895668991
"""

src/graphql/data/fpt/schema.json

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79823,6 +79823,11 @@
7982379823
"id": "actor",
7982479824
"href": "/graphql/reference/interfaces#actor"
7982579825
},
79826+
{
79827+
"name": "Agentic",
79828+
"id": "agentic",
79829+
"href": "/graphql/reference/interfaces#agentic"
79830+
},
7982679831
{
7982779832
"name": "Node",
7982879833
"id": "node",
@@ -82952,6 +82957,30 @@
8295282957
"kind": "scalars",
8295382958
"href": "/graphql/reference/scalars#boolean"
8295482959
},
82960+
{
82961+
"name": "viewerCopilotAgentCreatesChannel",
82962+
"description": "<p>Channel value for subscribing to live updates for session creations.</p>",
82963+
"type": "String",
82964+
"id": "string",
82965+
"kind": "scalars",
82966+
"href": "/graphql/reference/scalars#string"
82967+
},
82968+
{
82969+
"name": "viewerCopilotAgentLogUpdatesChannel",
82970+
"description": "<p>Channel value for subscribing to live updates for session log updates.</p>",
82971+
"type": "String",
82972+
"id": "string",
82973+
"kind": "scalars",
82974+
"href": "/graphql/reference/scalars#string"
82975+
},
82976+
{
82977+
"name": "viewerCopilotAgentUpdatesChannel",
82978+
"description": "<p>Channel value for subscribing to live updates for session updates.</p>",
82979+
"type": "String",
82980+
"id": "string",
82981+
"kind": "scalars",
82982+
"href": "/graphql/reference/scalars#string"
82983+
},
8295582984
{
8295682985
"name": "viewerIsFollowing",
8295782986
"description": "<p>Whether or not this user is followed by the viewer. Inverse of isFollowingViewer.</p>",
@@ -84846,6 +84875,39 @@
8484684875
}
8484784876
]
8484884877
},
84878+
{
84879+
"name": "Agentic",
84880+
"kind": "interfaces",
84881+
"id": "agentic",
84882+
"href": "/graphql/reference/interfaces#agentic",
84883+
"description": "<p>Copilot Agentic fields in context of the current viewer.</p>",
84884+
"fields": [
84885+
{
84886+
"name": "viewerCopilotAgentCreatesChannel",
84887+
"description": "<p>Channel value for subscribing to live updates for session creations.</p>",
84888+
"type": "String",
84889+
"id": "string",
84890+
"kind": "scalars",
84891+
"href": "/graphql/reference/scalars#string"
84892+
},
84893+
{
84894+
"name": "viewerCopilotAgentLogUpdatesChannel",
84895+
"description": "<p>Channel value for subscribing to live updates for session log updates.</p>",
84896+
"type": "String",
84897+
"id": "string",
84898+
"kind": "scalars",
84899+
"href": "/graphql/reference/scalars#string"
84900+
},
84901+
{
84902+
"name": "viewerCopilotAgentUpdatesChannel",
84903+
"description": "<p>Channel value for subscribing to live updates for session updates.</p>",
84904+
"type": "String",
84905+
"id": "string",
84906+
"kind": "scalars",
84907+
"href": "/graphql/reference/scalars#string"
84908+
}
84909+
]
84910+
},
8484984911
{
8485084912
"name": "Assignable",
8485184913
"kind": "interfaces",

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

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1416,6 +1416,26 @@ type AddedToProjectV2Event implements Node & ProjectV2Event {
14161416
wasAutomated: Boolean!
14171417
}
14181418

1419+
"""
1420+
Copilot Agentic fields in context of the current viewer.
1421+
"""
1422+
interface Agentic {
1423+
"""
1424+
Channel value for subscribing to live updates for session creations.
1425+
"""
1426+
viewerCopilotAgentCreatesChannel: String
1427+
1428+
"""
1429+
Channel value for subscribing to live updates for session log updates.
1430+
"""
1431+
viewerCopilotAgentLogUpdatesChannel: String
1432+
1433+
"""
1434+
Channel value for subscribing to live updates for session updates.
1435+
"""
1436+
viewerCopilotAgentUpdatesChannel: String
1437+
}
1438+
14191439
"""
14201440
An announcement banner for an enterprise or organization.
14211441
"""
@@ -67344,7 +67364,7 @@ type UpdateUserListsForItemPayload {
6734467364
"""
6734567365
A user is an individual's account on GitHub that owns repositories and can make new content.
6734667366
"""
67347-
type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV2Owner & ProjectV2Recent & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
67367+
type User implements Actor & Agentic & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV2Owner & ProjectV2Recent & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
6734867368
"""
6734967369
Determine if this repository owner has any items that can be pinned to their profile.
6735067370
"""
@@ -68951,6 +68971,21 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
6895168971
"""
6895268972
viewerCanSponsor: Boolean!
6895368973

68974+
"""
68975+
Channel value for subscribing to live updates for session creations.
68976+
"""
68977+
viewerCopilotAgentCreatesChannel: String
68978+
68979+
"""
68980+
Channel value for subscribing to live updates for session log updates.
68981+
"""
68982+
viewerCopilotAgentLogUpdatesChannel: String
68983+
68984+
"""
68985+
Channel value for subscribing to live updates for session updates.
68986+
"""
68987+
viewerCopilotAgentUpdatesChannel: String
68988+
6895468989
"""
6895568990
Whether or not this user is followed by the viewer. Inverse of isFollowingViewer.
6895668991
"""

src/graphql/data/ghec/schema.json

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79823,6 +79823,11 @@
7982379823
"id": "actor",
7982479824
"href": "/graphql/reference/interfaces#actor"
7982579825
},
79826+
{
79827+
"name": "Agentic",
79828+
"id": "agentic",
79829+
"href": "/graphql/reference/interfaces#agentic"
79830+
},
7982679831
{
7982779832
"name": "Node",
7982879833
"id": "node",
@@ -82952,6 +82957,30 @@
8295282957
"kind": "scalars",
8295382958
"href": "/graphql/reference/scalars#boolean"
8295482959
},
82960+
{
82961+
"name": "viewerCopilotAgentCreatesChannel",
82962+
"description": "<p>Channel value for subscribing to live updates for session creations.</p>",
82963+
"type": "String",
82964+
"id": "string",
82965+
"kind": "scalars",
82966+
"href": "/graphql/reference/scalars#string"
82967+
},
82968+
{
82969+
"name": "viewerCopilotAgentLogUpdatesChannel",
82970+
"description": "<p>Channel value for subscribing to live updates for session log updates.</p>",
82971+
"type": "String",
82972+
"id": "string",
82973+
"kind": "scalars",
82974+
"href": "/graphql/reference/scalars#string"
82975+
},
82976+
{
82977+
"name": "viewerCopilotAgentUpdatesChannel",
82978+
"description": "<p>Channel value for subscribing to live updates for session updates.</p>",
82979+
"type": "String",
82980+
"id": "string",
82981+
"kind": "scalars",
82982+
"href": "/graphql/reference/scalars#string"
82983+
},
8295582984
{
8295682985
"name": "viewerIsFollowing",
8295782986
"description": "<p>Whether or not this user is followed by the viewer. Inverse of isFollowingViewer.</p>",
@@ -84846,6 +84875,39 @@
8484684875
}
8484784876
]
8484884877
},
84878+
{
84879+
"name": "Agentic",
84880+
"kind": "interfaces",
84881+
"id": "agentic",
84882+
"href": "/graphql/reference/interfaces#agentic",
84883+
"description": "<p>Copilot Agentic fields in context of the current viewer.</p>",
84884+
"fields": [
84885+
{
84886+
"name": "viewerCopilotAgentCreatesChannel",
84887+
"description": "<p>Channel value for subscribing to live updates for session creations.</p>",
84888+
"type": "String",
84889+
"id": "string",
84890+
"kind": "scalars",
84891+
"href": "/graphql/reference/scalars#string"
84892+
},
84893+
{
84894+
"name": "viewerCopilotAgentLogUpdatesChannel",
84895+
"description": "<p>Channel value for subscribing to live updates for session log updates.</p>",
84896+
"type": "String",
84897+
"id": "string",
84898+
"kind": "scalars",
84899+
"href": "/graphql/reference/scalars#string"
84900+
},
84901+
{
84902+
"name": "viewerCopilotAgentUpdatesChannel",
84903+
"description": "<p>Channel value for subscribing to live updates for session updates.</p>",
84904+
"type": "String",
84905+
"id": "string",
84906+
"kind": "scalars",
84907+
"href": "/graphql/reference/scalars#string"
84908+
}
84909+
]
84910+
},
8484984911
{
8485084912
"name": "Assignable",
8485184913
"kind": "interfaces",

0 commit comments

Comments
 (0)