Skip to content

Commit ab85fad

Browse files
docs-botlumaxis
andauthored
GraphQL schema update (#55294)
Co-authored-by: lumaxis <[email protected]>
1 parent 1ae9c08 commit ab85fad

File tree

5 files changed

+108
-0
lines changed

5 files changed

+108
-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>Type <code>RepositorySuggestedActorFilter</code> was added</p>",
8+
"<p>Argument 'capabilities: [RepositorySuggestedActorFilter!]!<code>added to field</code>Repository.suggestedActors'</p>"
9+
]
10+
}
11+
],
12+
"previewChanges": [],
13+
"upcomingChanges": [],
14+
"date": "2025-04-15"
15+
},
216
{
317
"schemaChanges": [
418
{

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

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50840,6 +50840,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
5084050840
"""
5084150841
before: String
5084250842

50843+
"""
50844+
A list of capabilities to filter actors by.
50845+
"""
50846+
capabilities: [RepositorySuggestedActorFilter!]!
50847+
5084350848
"""
5084450849
Returns the first _n_ elements from the list.
5084550850
"""
@@ -52888,6 +52893,21 @@ enum RepositoryRulesetTarget {
5288852893
TAG
5288952894
}
5289052895

52896+
"""
52897+
The possible filters for suggested actors in a repository
52898+
"""
52899+
enum RepositorySuggestedActorFilter {
52900+
"""
52901+
Actors that can be assigned to issues and pull requests
52902+
"""
52903+
CAN_BE_ASSIGNED
52904+
52905+
"""
52906+
Actors that can be the author of issues and pull requests
52907+
"""
52908+
CAN_BE_AUTHOR
52909+
}
52910+
5289152911
"""
5289252912
A repository-topic connects a repository to a topic.
5289352913
"""

src/graphql/data/fpt/schema.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67349,6 +67349,16 @@
6734967349
"href": "/graphql/reference/scalars#string"
6735067350
}
6735167351
},
67352+
{
67353+
"name": "capabilities",
67354+
"description": "<p>A list of capabilities to filter actors by.</p>",
67355+
"type": {
67356+
"name": "[RepositorySuggestedActorFilter!]!",
67357+
"id": "repositorysuggestedactorfilter",
67358+
"kind": "enums",
67359+
"href": "/graphql/reference/enums#repositorysuggestedactorfilter"
67360+
}
67361+
},
6735267362
{
6735367363
"name": "first",
6735467364
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
@@ -92393,6 +92403,23 @@
9239392403
}
9239492404
]
9239592405
},
92406+
{
92407+
"name": "RepositorySuggestedActorFilter",
92408+
"kind": "enums",
92409+
"id": "repositorysuggestedactorfilter",
92410+
"href": "/graphql/reference/enums#repositorysuggestedactorfilter",
92411+
"description": "<p>The possible filters for suggested actors in a repository.</p>",
92412+
"values": [
92413+
{
92414+
"name": "CAN_BE_ASSIGNED",
92415+
"description": "<p>Actors that can be assigned to issues and pull requests.</p>"
92416+
},
92417+
{
92418+
"name": "CAN_BE_AUTHOR",
92419+
"description": "<p>Actors that can be the author of issues and pull requests.</p>"
92420+
}
92421+
]
92422+
},
9239692423
{
9239792424
"name": "RepositoryVisibility",
9239892425
"kind": "enums",

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

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50840,6 +50840,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
5084050840
"""
5084150841
before: String
5084250842

50843+
"""
50844+
A list of capabilities to filter actors by.
50845+
"""
50846+
capabilities: [RepositorySuggestedActorFilter!]!
50847+
5084350848
"""
5084450849
Returns the first _n_ elements from the list.
5084550850
"""
@@ -52888,6 +52893,21 @@ enum RepositoryRulesetTarget {
5288852893
TAG
5288952894
}
5289052895

52896+
"""
52897+
The possible filters for suggested actors in a repository
52898+
"""
52899+
enum RepositorySuggestedActorFilter {
52900+
"""
52901+
Actors that can be assigned to issues and pull requests
52902+
"""
52903+
CAN_BE_ASSIGNED
52904+
52905+
"""
52906+
Actors that can be the author of issues and pull requests
52907+
"""
52908+
CAN_BE_AUTHOR
52909+
}
52910+
5289152911
"""
5289252912
A repository-topic connects a repository to a topic.
5289352913
"""

src/graphql/data/ghec/schema.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67349,6 +67349,16 @@
6734967349
"href": "/graphql/reference/scalars#string"
6735067350
}
6735167351
},
67352+
{
67353+
"name": "capabilities",
67354+
"description": "<p>A list of capabilities to filter actors by.</p>",
67355+
"type": {
67356+
"name": "[RepositorySuggestedActorFilter!]!",
67357+
"id": "repositorysuggestedactorfilter",
67358+
"kind": "enums",
67359+
"href": "/graphql/reference/enums#repositorysuggestedactorfilter"
67360+
}
67361+
},
6735267362
{
6735367363
"name": "first",
6735467364
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
@@ -92393,6 +92403,23 @@
9239392403
}
9239492404
]
9239592405
},
92406+
{
92407+
"name": "RepositorySuggestedActorFilter",
92408+
"kind": "enums",
92409+
"id": "repositorysuggestedactorfilter",
92410+
"href": "/graphql/reference/enums#repositorysuggestedactorfilter",
92411+
"description": "<p>The possible filters for suggested actors in a repository.</p>",
92412+
"values": [
92413+
{
92414+
"name": "CAN_BE_ASSIGNED",
92415+
"description": "<p>Actors that can be assigned to issues and pull requests.</p>"
92416+
},
92417+
{
92418+
"name": "CAN_BE_AUTHOR",
92419+
"description": "<p>Actors that can be the author of issues and pull requests.</p>"
92420+
}
92421+
]
92422+
},
9239692423
{
9239792424
"name": "RepositoryVisibility",
9239892425
"kind": "enums",

0 commit comments

Comments
 (0)