Skip to content

Commit 4b03251

Browse files
docs-botheiskr
andauthored
GraphQL schema update (#59311)
Co-authored-by: heiskr <1221423+heiskr@users.noreply.github.com>
1 parent 062a5c6 commit 4b03251

File tree

5 files changed

+54
-8
lines changed

5 files changed

+54
-8
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>Input field <code>actorLogins</code> of type '[String!]<code>was added to input object type</code>ReplaceActorsForAssignableInput'</p>",
8+
"<p>Input field <code>ReplaceActorsForAssignableInput.actorIds</code> changed type from '[ID!]!<code>to</code>[ID!]'</p>"
9+
]
10+
}
11+
],
12+
"previewChanges": [],
13+
"upcomingChanges": [],
14+
"date": "2026-01-23"
15+
},
216
{
317
"schemaChanges": [
418
{

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

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46635,14 +46635,22 @@ Autogenerated input type of ReplaceActorsForAssignable
4663546635
"""
4663646636
input ReplaceActorsForAssignableInput {
4663746637
"""
46638-
The ids of the actors to replace the existing assignees.
46638+
The ids of the actors to replace the existing assignees. May be used as an
46639+
alternative to or in conjunction with actorLogins.
4663946640
"""
46640-
actorIds: [ID!]!
46641+
actorIds: [ID!]
4664146642
@possibleTypes(
4664246643
concreteTypes: ["Bot", "EnterpriseUserAccount", "Mannequin", "Organization", "User"]
4664346644
abstractType: "Actor"
4664446645
)
4664546646

46647+
"""
46648+
The usernames of the actors to replace the existing assignees. May be used as
46649+
an alternative to or in conjunction with actorIds. For bots, use the login
46650+
format with [bot] suffix (e.g., 'my-app[bot]').
46651+
"""
46652+
actorLogins: [String!]
46653+
4664646654
"""
4664746655
The id of the assignable object to replace the assignees for.
4664846656
"""

src/graphql/data/fpt/schema.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106498,13 +106498,21 @@
106498106498
"inputFields": [
106499106499
{
106500106500
"name": "actorIds",
106501-
"description": "<p>The ids of the actors to replace the existing assignees.</p>",
106502-
"type": "[ID!]!",
106501+
"description": "<p>The ids of the actors to replace the existing assignees. May be used as an\nalternative to or in conjunction with actorLogins.</p>",
106502+
"type": "[ID!]",
106503106503
"id": "id",
106504106504
"kind": "scalars",
106505106505
"href": "/graphql/reference/scalars#id",
106506106506
"isDeprecated": false
106507106507
},
106508+
{
106509+
"name": "actorLogins",
106510+
"description": "<p>The usernames of the actors to replace the existing assignees. May be used as\nan alternative to or in conjunction with actorIds. For bots, use the login\nformat with [bot] suffix (e.g., 'my-app[bot]').</p>",
106511+
"type": "[String!]",
106512+
"id": "string",
106513+
"kind": "scalars",
106514+
"href": "/graphql/reference/scalars#string"
106515+
},
106508106516
{
106509106517
"name": "assignableId",
106510106518
"description": "<p>The id of the assignable object to replace the assignees for.</p>",

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

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46635,14 +46635,22 @@ Autogenerated input type of ReplaceActorsForAssignable
4663546635
"""
4663646636
input ReplaceActorsForAssignableInput {
4663746637
"""
46638-
The ids of the actors to replace the existing assignees.
46638+
The ids of the actors to replace the existing assignees. May be used as an
46639+
alternative to or in conjunction with actorLogins.
4663946640
"""
46640-
actorIds: [ID!]!
46641+
actorIds: [ID!]
4664146642
@possibleTypes(
4664246643
concreteTypes: ["Bot", "EnterpriseUserAccount", "Mannequin", "Organization", "User"]
4664346644
abstractType: "Actor"
4664446645
)
4664546646

46647+
"""
46648+
The usernames of the actors to replace the existing assignees. May be used as
46649+
an alternative to or in conjunction with actorIds. For bots, use the login
46650+
format with [bot] suffix (e.g., 'my-app[bot]').
46651+
"""
46652+
actorLogins: [String!]
46653+
4664646654
"""
4664746655
The id of the assignable object to replace the assignees for.
4664846656
"""

src/graphql/data/ghec/schema.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106498,13 +106498,21 @@
106498106498
"inputFields": [
106499106499
{
106500106500
"name": "actorIds",
106501-
"description": "<p>The ids of the actors to replace the existing assignees.</p>",
106502-
"type": "[ID!]!",
106501+
"description": "<p>The ids of the actors to replace the existing assignees. May be used as an\nalternative to or in conjunction with actorLogins.</p>",
106502+
"type": "[ID!]",
106503106503
"id": "id",
106504106504
"kind": "scalars",
106505106505
"href": "/graphql/reference/scalars#id",
106506106506
"isDeprecated": false
106507106507
},
106508+
{
106509+
"name": "actorLogins",
106510+
"description": "<p>The usernames of the actors to replace the existing assignees. May be used as\nan alternative to or in conjunction with actorIds. For bots, use the login\nformat with [bot] suffix (e.g., 'my-app[bot]').</p>",
106511+
"type": "[String!]",
106512+
"id": "string",
106513+
"kind": "scalars",
106514+
"href": "/graphql/reference/scalars#string"
106515+
},
106508106516
{
106509106517
"name": "assignableId",
106510106518
"description": "<p>The id of the assignable object to replace the assignees for.</p>",

0 commit comments

Comments
 (0)