Skip to content

Commit 7660a90

Browse files
docs-botheiskr
andauthored
GraphQL schema update (#58551)
Co-authored-by: heiskr <[email protected]>
1 parent b6a63ff commit 7660a90

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,9 +361,13 @@ input AddAssigneesToAssignableInput {
361361
assignableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Assignable")
362362

363363
"""
364-
The id of users to add as assignees.
364+
The ids of actors (users or bots) to add as assignees.
365365
"""
366-
assigneeIds: [ID!]! @possibleTypes(concreteTypes: ["User"])
366+
assigneeIds: [ID!]!
367+
@possibleTypes(
368+
concreteTypes: ["Bot", "EnterpriseUserAccount", "Mannequin", "Organization", "User"]
369+
abstractType: "Actor"
370+
)
367371

368372
"""
369373
A unique identifier for the client performing the mutation.

src/graphql/data/fpt/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98157,7 +98157,7 @@
9815798157
},
9815898158
{
9815998159
"name": "assigneeIds",
98160-
"description": "<p>The id of users to add as assignees.</p>",
98160+
"description": "<p>The ids of actors (users or bots) to add as assignees.</p>",
9816198161
"type": "[ID!]!",
9816298162
"id": "id",
9816398163
"kind": "scalars",

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,9 +361,13 @@ input AddAssigneesToAssignableInput {
361361
assignableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Assignable")
362362

363363
"""
364-
The id of users to add as assignees.
364+
The ids of actors (users or bots) to add as assignees.
365365
"""
366-
assigneeIds: [ID!]! @possibleTypes(concreteTypes: ["User"])
366+
assigneeIds: [ID!]!
367+
@possibleTypes(
368+
concreteTypes: ["Bot", "EnterpriseUserAccount", "Mannequin", "Organization", "User"]
369+
abstractType: "Actor"
370+
)
367371

368372
"""
369373
A unique identifier for the client performing the mutation.

src/graphql/data/ghec/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98157,7 +98157,7 @@
9815798157
},
9815898158
{
9815998159
"name": "assigneeIds",
98160-
"description": "<p>The id of users to add as assignees.</p>",
98160+
"description": "<p>The ids of actors (users or bots) to add as assignees.</p>",
9816198161
"type": "[ID!]!",
9816298162
"id": "id",
9816398163
"kind": "scalars",

0 commit comments

Comments
 (0)