1
0
mirror of synced 2025-12-19 18:10:59 -05:00

GraphQL schema update (#58611)

Co-authored-by: heiskr <1221423+heiskr@users.noreply.github.com>
This commit is contained in:
docs-bot
2025-12-01 06:39:06 -08:00
committed by GitHub
parent 88a17c8f1a
commit 7f8551308c
5 changed files with 666 additions and 32 deletions

View File

@@ -1,4 +1,26 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Type <code>SuggestedReviewerActor</code> was added</p>",
"<p>Type <code>SuggestedReviewerActorConnection</code> was added</p>",
"<p>Type <code>SuggestedReviewerActorEdge</code> was added</p>",
"<p>Enum value 'ISSUE_FIELD_ADDED_EVENT<code>was added to enum</code>IssueTimelineItemsItemType'</p>",
"<p>Enum value 'ISSUE_FIELD_CHANGED_EVENT<code>was added to enum</code>IssueTimelineItemsItemType'</p>",
"<p>Enum value 'ISSUE_FIELD_REMOVED_EVENT<code>was added to enum</code>IssueTimelineItemsItemType'</p>",
"<p>Field <code>suggestedReviewerActors</code> was added to object type <code>PullRequest</code></p>",
"<p>Enum value 'ISSUE_FIELD_ADDED_EVENT<code>was added to enum</code>PullRequestTimelineItemsItemType'</p>",
"<p>Enum value 'ISSUE_FIELD_CHANGED_EVENT<code>was added to enum</code>PullRequestTimelineItemsItemType'</p>",
"<p>Enum value 'ISSUE_FIELD_REMOVED_EVENT<code>was added to enum</code>PullRequestTimelineItemsItemType'</p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2025-11-30"
},
{
"schemaChanges": [
{

View File

@@ -7335,7 +7335,9 @@ type ConvertedToDiscussionEvent implements Node {
}
"""
Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.
Request Copilot code review for new pull requests automatically if the author
has access to Copilot code review and their premium requests quota has not
reached the limit.
"""
type CopilotCodeReviewParameters {
"""
@@ -7350,7 +7352,9 @@ type CopilotCodeReviewParameters {
}
"""
Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.
Request Copilot code review for new pull requests automatically if the author
has access to Copilot code review and their premium requests quota has not
reached the limit.
"""
input CopilotCodeReviewParametersInput {
"""
@@ -20648,6 +20652,21 @@ enum IssueTimelineItemsItemType {
"""
ISSUE_COMMENT
"""
Represents a 'issue_field_added' event on a given issue.
"""
ISSUE_FIELD_ADDED_EVENT
"""
Represents a 'issue_field_changed' event on a given issue.
"""
ISSUE_FIELD_CHANGED_EVENT
"""
Represents a 'issue_field_removed' event on a given issue.
"""
ISSUE_FIELD_REMOVED_EVENT
"""
Represents a 'issue_type_added' event on a given issue.
"""
@@ -41291,6 +41310,31 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
query: String
): AssigneeConnection!
"""
Reviewer actor suggestions based on commit history, past review comments, and integrations.
"""
suggestedReviewerActors(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Returns the last _n_ elements from the list.
"""
last: Int
): SuggestedReviewerActorConnection!
"""
A list of reviewer suggestions based on commit history and past review comments.
"""
@@ -41905,7 +41949,9 @@ type PullRequestParameters {
allowedMergeMethods: [PullRequestAllowedMergeMethods!]
"""
Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.
Request Copilot code review for new pull requests automatically if the author
has access to Copilot code review and their premium requests quota has not
reached the limit.
"""
automaticCopilotCodeReviewEnabled: Boolean!
@@ -41953,7 +41999,9 @@ input PullRequestParametersInput {
allowedMergeMethods: [PullRequestAllowedMergeMethods!]
"""
Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.
Request Copilot code review for new pull requests automatically if the author
has access to Copilot code review and their premium requests quota has not
reached the limit.
"""
automaticCopilotCodeReviewEnabled: Boolean
@@ -43519,6 +43567,21 @@ enum PullRequestTimelineItemsItemType {
"""
ISSUE_COMMENT
"""
Represents a 'issue_field_added' event on a given issue.
"""
ISSUE_FIELD_ADDED_EVENT
"""
Represents a 'issue_field_changed' event on a given issue.
"""
ISSUE_FIELD_CHANGED_EVENT
"""
Represents a 'issue_field_removed' event on a given issue.
"""
ISSUE_FIELD_REMOVED_EVENT
"""
Represents a 'issue_type_added' event on a given issue.
"""
@@ -45719,9 +45782,13 @@ input RemoveAssigneesFromAssignableInput {
assignableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Assignable")
"""
The id of users to remove as assignees.
The ids of actors to remove as assignees.
"""
assigneeIds: [ID!]! @possibleTypes(concreteTypes: ["User"])
assigneeIds: [ID!]!
@possibleTypes(
concreteTypes: ["Bot", "EnterpriseUserAccount", "Mannequin", "Organization", "User"]
abstractType: "Actor"
)
"""
A unique identifier for the client performing the mutation.
@@ -53261,7 +53328,9 @@ enum RepositoryRuleType {
COMMIT_MESSAGE_PATTERN
"""
Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.
Request Copilot code review for new pull requests automatically if the author
has access to Copilot code review and their premium requests quota has not
reached the limit.
"""
COPILOT_CODE_REVIEW
@@ -60390,6 +60459,66 @@ type SuggestedReviewer {
reviewer: User!
}
"""
A suggestion to review a pull request based on an actor's commit history, review comments, and integrations.
"""
type SuggestedReviewerActor {
"""
Is this suggestion based on past commits?
"""
isAuthor: Boolean!
"""
Is this suggestion based on past review comments?
"""
isCommenter: Boolean!
"""
Identifies the actor suggested to review the pull request.
"""
reviewer: Actor!
}
"""
A suggestion to review a pull request based on an actor's commit history, review comments, and integrations.
"""
type SuggestedReviewerActorConnection {
"""
A list of edges.
"""
edges: [SuggestedReviewerActorEdge]
"""
A list of nodes.
"""
nodes: [SuggestedReviewerActor]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}
"""
An edge in a connection.
"""
type SuggestedReviewerActorEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: SuggestedReviewerActor
}
"""
Represents a Git tag.
"""
@@ -65626,9 +65755,13 @@ Autogenerated input type of UpdateIssue
"""
input UpdateIssueInput {
"""
An array of Node IDs of users for this issue.
An array of Node IDs of users or bots for this issue.
"""
assigneeIds: [ID!] @possibleTypes(concreteTypes: ["User"])
assigneeIds: [ID!]
@possibleTypes(
concreteTypes: ["Bot", "EnterpriseUserAccount", "Mannequin", "Organization", "User"]
abstractType: "Actor"
)
"""
The body for the issue description.

View File

@@ -17559,7 +17559,7 @@
"kind": "objects",
"id": "copilotcodereviewparameters",
"href": "/graphql/reference/objects#copilotcodereviewparameters",
"description": "<p>Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.</p>",
"description": "<p>Request Copilot code review for new pull requests automatically if the author\nhas access to Copilot code review and their premium requests quota has not\nreached the limit.</p>",
"fields": [
{
"name": "reviewDraftPullRequests",
@@ -55187,6 +55187,56 @@
}
]
},
{
"name": "suggestedReviewerActors",
"description": "<p>Reviewer actor suggestions based on commit history, past review comments, and integrations.</p>",
"type": "SuggestedReviewerActorConnection!",
"id": "suggestedrevieweractorconnection",
"kind": "objects",
"href": "/graphql/reference/objects#suggestedrevieweractorconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
},
{
"name": "suggestedReviewers",
"description": "<p>A list of reviewer suggestions based on commit history and past review comments.</p>",
@@ -56134,7 +56184,7 @@
},
{
"name": "automaticCopilotCodeReviewEnabled",
"description": "<p>Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.</p>",
"description": "<p>Request Copilot code review for new pull requests automatically if the author\nhas access to Copilot code review and their premium requests quota has not\nreached the limit.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
@@ -75054,6 +75104,105 @@
}
]
},
{
"name": "SuggestedReviewerActor",
"kind": "objects",
"id": "suggestedrevieweractor",
"href": "/graphql/reference/objects#suggestedrevieweractor",
"description": "<p>A suggestion to review a pull request based on an actor's commit history, review comments, and integrations.</p>",
"fields": [
{
"name": "isAuthor",
"description": "<p>Is this suggestion based on past commits?.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "isCommenter",
"description": "<p>Is this suggestion based on past review comments?.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "reviewer",
"description": "<p>Identifies the actor suggested to review the pull request.</p>",
"type": "Actor!",
"id": "actor",
"kind": "interfaces",
"href": "/graphql/reference/interfaces#actor"
}
]
},
{
"name": "SuggestedReviewerActorConnection",
"kind": "objects",
"id": "suggestedrevieweractorconnection",
"href": "/graphql/reference/objects#suggestedrevieweractorconnection",
"description": "<p>A suggestion to review a pull request based on an actor's commit history, review comments, and integrations.</p>",
"fields": [
{
"name": "edges",
"description": "<p>A list of edges.</p>",
"type": "[SuggestedReviewerActorEdge]",
"id": "suggestedrevieweractoredge",
"kind": "objects",
"href": "/graphql/reference/objects#suggestedrevieweractoredge"
},
{
"name": "nodes",
"description": "<p>A list of nodes.</p>",
"type": "[SuggestedReviewerActor]",
"id": "suggestedrevieweractor",
"kind": "objects",
"href": "/graphql/reference/objects#suggestedrevieweractor"
},
{
"name": "pageInfo",
"description": "<p>Information to aid in pagination.</p>",
"type": "PageInfo!",
"id": "pageinfo",
"kind": "objects",
"href": "/graphql/reference/objects#pageinfo"
},
{
"name": "totalCount",
"description": "<p>Identifies the total count of items in the connection.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
]
},
{
"name": "SuggestedReviewerActorEdge",
"kind": "objects",
"id": "suggestedrevieweractoredge",
"href": "/graphql/reference/objects#suggestedrevieweractoredge",
"description": "<p>An edge in a connection.</p>",
"fields": [
{
"name": "cursor",
"description": "<p>A cursor for use in pagination.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "node",
"description": "<p>The item at the end of the edge.</p>",
"type": "SuggestedReviewerActor",
"id": "suggestedrevieweractor",
"kind": "objects",
"href": "/graphql/reference/objects#suggestedrevieweractor"
}
]
},
{
"name": "Tag",
"kind": "objects",
@@ -90453,6 +90602,18 @@
"name": "ISSUE_COMMENT",
"description": "<p>Represents a comment on an Issue.</p>"
},
{
"name": "ISSUE_FIELD_ADDED_EVENT",
"description": "<p>Represents a<code>issue_field_added</code>event on a given issue.</p>"
},
{
"name": "ISSUE_FIELD_CHANGED_EVENT",
"description": "<p>Represents a<code>issue_field_changed</code>event on a given issue.</p>"
},
{
"name": "ISSUE_FIELD_REMOVED_EVENT",
"description": "<p>Represents a<code>issue_field_removed</code>event on a given issue.</p>"
},
{
"name": "ISSUE_TYPE_ADDED_EVENT",
"description": "<p>Represents a<code>issue_type_added</code>event on a given issue.</p>"
@@ -92636,6 +92797,18 @@
"name": "ISSUE_COMMENT",
"description": "<p>Represents a comment on an Issue.</p>"
},
{
"name": "ISSUE_FIELD_ADDED_EVENT",
"description": "<p>Represents a<code>issue_field_added</code>event on a given issue.</p>"
},
{
"name": "ISSUE_FIELD_CHANGED_EVENT",
"description": "<p>Represents a<code>issue_field_changed</code>event on a given issue.</p>"
},
{
"name": "ISSUE_FIELD_REMOVED_EVENT",
"description": "<p>Represents a<code>issue_field_removed</code>event on a given issue.</p>"
},
{
"name": "ISSUE_TYPE_ADDED_EVENT",
"description": "<p>Represents a<code>issue_type_added</code>event on a given issue.</p>"
@@ -93413,7 +93586,7 @@
},
{
"name": "COPILOT_CODE_REVIEW",
"description": "<p>Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.</p>"
"description": "<p>Request Copilot code review for new pull requests automatically if the author\nhas access to Copilot code review and their premium requests quota has not\nreached the limit.</p>"
},
{
"name": "CREATION",
@@ -100474,7 +100647,7 @@
"kind": "inputObjects",
"id": "copilotcodereviewparametersinput",
"href": "/graphql/reference/input-objects#copilotcodereviewparametersinput",
"description": "<p>Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.</p>",
"description": "<p>Request Copilot code review for new pull requests automatically if the author\nhas access to Copilot code review and their premium requests quota has not\nreached the limit.</p>",
"inputFields": [
{
"name": "reviewDraftPullRequests",
@@ -106190,7 +106363,7 @@
},
{
"name": "automaticCopilotCodeReviewEnabled",
"description": "<p>Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.</p>",
"description": "<p>Request Copilot code review for new pull requests automatically if the author\nhas access to Copilot code review and their premium requests quota has not\nreached the limit.</p>",
"type": "Boolean",
"id": "boolean",
"kind": "scalars",
@@ -106499,7 +106672,7 @@
},
{
"name": "assigneeIds",
"description": "<p>The id of users to remove as assignees.</p>",
"description": "<p>The ids of actors to remove as assignees.</p>",
"type": "[ID!]!",
"id": "id",
"kind": "scalars",
@@ -110782,7 +110955,7 @@
"inputFields": [
{
"name": "assigneeIds",
"description": "<p>An array of Node IDs of users for this issue.</p>",
"description": "<p>An array of Node IDs of users or bots for this issue.</p>",
"type": "[ID!]",
"id": "id",
"kind": "scalars",

View File

@@ -7335,7 +7335,9 @@ type ConvertedToDiscussionEvent implements Node {
}
"""
Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.
Request Copilot code review for new pull requests automatically if the author
has access to Copilot code review and their premium requests quota has not
reached the limit.
"""
type CopilotCodeReviewParameters {
"""
@@ -7350,7 +7352,9 @@ type CopilotCodeReviewParameters {
}
"""
Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.
Request Copilot code review for new pull requests automatically if the author
has access to Copilot code review and their premium requests quota has not
reached the limit.
"""
input CopilotCodeReviewParametersInput {
"""
@@ -20648,6 +20652,21 @@ enum IssueTimelineItemsItemType {
"""
ISSUE_COMMENT
"""
Represents a 'issue_field_added' event on a given issue.
"""
ISSUE_FIELD_ADDED_EVENT
"""
Represents a 'issue_field_changed' event on a given issue.
"""
ISSUE_FIELD_CHANGED_EVENT
"""
Represents a 'issue_field_removed' event on a given issue.
"""
ISSUE_FIELD_REMOVED_EVENT
"""
Represents a 'issue_type_added' event on a given issue.
"""
@@ -41291,6 +41310,31 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
query: String
): AssigneeConnection!
"""
Reviewer actor suggestions based on commit history, past review comments, and integrations.
"""
suggestedReviewerActors(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Returns the last _n_ elements from the list.
"""
last: Int
): SuggestedReviewerActorConnection!
"""
A list of reviewer suggestions based on commit history and past review comments.
"""
@@ -41905,7 +41949,9 @@ type PullRequestParameters {
allowedMergeMethods: [PullRequestAllowedMergeMethods!]
"""
Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.
Request Copilot code review for new pull requests automatically if the author
has access to Copilot code review and their premium requests quota has not
reached the limit.
"""
automaticCopilotCodeReviewEnabled: Boolean!
@@ -41953,7 +41999,9 @@ input PullRequestParametersInput {
allowedMergeMethods: [PullRequestAllowedMergeMethods!]
"""
Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.
Request Copilot code review for new pull requests automatically if the author
has access to Copilot code review and their premium requests quota has not
reached the limit.
"""
automaticCopilotCodeReviewEnabled: Boolean
@@ -43519,6 +43567,21 @@ enum PullRequestTimelineItemsItemType {
"""
ISSUE_COMMENT
"""
Represents a 'issue_field_added' event on a given issue.
"""
ISSUE_FIELD_ADDED_EVENT
"""
Represents a 'issue_field_changed' event on a given issue.
"""
ISSUE_FIELD_CHANGED_EVENT
"""
Represents a 'issue_field_removed' event on a given issue.
"""
ISSUE_FIELD_REMOVED_EVENT
"""
Represents a 'issue_type_added' event on a given issue.
"""
@@ -45719,9 +45782,13 @@ input RemoveAssigneesFromAssignableInput {
assignableId: ID! @possibleTypes(concreteTypes: ["Issue", "PullRequest"], abstractType: "Assignable")
"""
The id of users to remove as assignees.
The ids of actors to remove as assignees.
"""
assigneeIds: [ID!]! @possibleTypes(concreteTypes: ["User"])
assigneeIds: [ID!]!
@possibleTypes(
concreteTypes: ["Bot", "EnterpriseUserAccount", "Mannequin", "Organization", "User"]
abstractType: "Actor"
)
"""
A unique identifier for the client performing the mutation.
@@ -53261,7 +53328,9 @@ enum RepositoryRuleType {
COMMIT_MESSAGE_PATTERN
"""
Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.
Request Copilot code review for new pull requests automatically if the author
has access to Copilot code review and their premium requests quota has not
reached the limit.
"""
COPILOT_CODE_REVIEW
@@ -60390,6 +60459,66 @@ type SuggestedReviewer {
reviewer: User!
}
"""
A suggestion to review a pull request based on an actor's commit history, review comments, and integrations.
"""
type SuggestedReviewerActor {
"""
Is this suggestion based on past commits?
"""
isAuthor: Boolean!
"""
Is this suggestion based on past review comments?
"""
isCommenter: Boolean!
"""
Identifies the actor suggested to review the pull request.
"""
reviewer: Actor!
}
"""
A suggestion to review a pull request based on an actor's commit history, review comments, and integrations.
"""
type SuggestedReviewerActorConnection {
"""
A list of edges.
"""
edges: [SuggestedReviewerActorEdge]
"""
A list of nodes.
"""
nodes: [SuggestedReviewerActor]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}
"""
An edge in a connection.
"""
type SuggestedReviewerActorEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: SuggestedReviewerActor
}
"""
Represents a Git tag.
"""
@@ -65626,9 +65755,13 @@ Autogenerated input type of UpdateIssue
"""
input UpdateIssueInput {
"""
An array of Node IDs of users for this issue.
An array of Node IDs of users or bots for this issue.
"""
assigneeIds: [ID!] @possibleTypes(concreteTypes: ["User"])
assigneeIds: [ID!]
@possibleTypes(
concreteTypes: ["Bot", "EnterpriseUserAccount", "Mannequin", "Organization", "User"]
abstractType: "Actor"
)
"""
The body for the issue description.

View File

@@ -17559,7 +17559,7 @@
"kind": "objects",
"id": "copilotcodereviewparameters",
"href": "/graphql/reference/objects#copilotcodereviewparameters",
"description": "<p>Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.</p>",
"description": "<p>Request Copilot code review for new pull requests automatically if the author\nhas access to Copilot code review and their premium requests quota has not\nreached the limit.</p>",
"fields": [
{
"name": "reviewDraftPullRequests",
@@ -55187,6 +55187,56 @@
}
]
},
{
"name": "suggestedReviewerActors",
"description": "<p>Reviewer actor suggestions based on commit history, past review comments, and integrations.</p>",
"type": "SuggestedReviewerActorConnection!",
"id": "suggestedrevieweractorconnection",
"kind": "objects",
"href": "/graphql/reference/objects#suggestedrevieweractorconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
},
{
"name": "suggestedReviewers",
"description": "<p>A list of reviewer suggestions based on commit history and past review comments.</p>",
@@ -56134,7 +56184,7 @@
},
{
"name": "automaticCopilotCodeReviewEnabled",
"description": "<p>Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.</p>",
"description": "<p>Request Copilot code review for new pull requests automatically if the author\nhas access to Copilot code review and their premium requests quota has not\nreached the limit.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
@@ -75054,6 +75104,105 @@
}
]
},
{
"name": "SuggestedReviewerActor",
"kind": "objects",
"id": "suggestedrevieweractor",
"href": "/graphql/reference/objects#suggestedrevieweractor",
"description": "<p>A suggestion to review a pull request based on an actor's commit history, review comments, and integrations.</p>",
"fields": [
{
"name": "isAuthor",
"description": "<p>Is this suggestion based on past commits?.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "isCommenter",
"description": "<p>Is this suggestion based on past review comments?.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "reviewer",
"description": "<p>Identifies the actor suggested to review the pull request.</p>",
"type": "Actor!",
"id": "actor",
"kind": "interfaces",
"href": "/graphql/reference/interfaces#actor"
}
]
},
{
"name": "SuggestedReviewerActorConnection",
"kind": "objects",
"id": "suggestedrevieweractorconnection",
"href": "/graphql/reference/objects#suggestedrevieweractorconnection",
"description": "<p>A suggestion to review a pull request based on an actor's commit history, review comments, and integrations.</p>",
"fields": [
{
"name": "edges",
"description": "<p>A list of edges.</p>",
"type": "[SuggestedReviewerActorEdge]",
"id": "suggestedrevieweractoredge",
"kind": "objects",
"href": "/graphql/reference/objects#suggestedrevieweractoredge"
},
{
"name": "nodes",
"description": "<p>A list of nodes.</p>",
"type": "[SuggestedReviewerActor]",
"id": "suggestedrevieweractor",
"kind": "objects",
"href": "/graphql/reference/objects#suggestedrevieweractor"
},
{
"name": "pageInfo",
"description": "<p>Information to aid in pagination.</p>",
"type": "PageInfo!",
"id": "pageinfo",
"kind": "objects",
"href": "/graphql/reference/objects#pageinfo"
},
{
"name": "totalCount",
"description": "<p>Identifies the total count of items in the connection.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
]
},
{
"name": "SuggestedReviewerActorEdge",
"kind": "objects",
"id": "suggestedrevieweractoredge",
"href": "/graphql/reference/objects#suggestedrevieweractoredge",
"description": "<p>An edge in a connection.</p>",
"fields": [
{
"name": "cursor",
"description": "<p>A cursor for use in pagination.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "node",
"description": "<p>The item at the end of the edge.</p>",
"type": "SuggestedReviewerActor",
"id": "suggestedrevieweractor",
"kind": "objects",
"href": "/graphql/reference/objects#suggestedrevieweractor"
}
]
},
{
"name": "Tag",
"kind": "objects",
@@ -90453,6 +90602,18 @@
"name": "ISSUE_COMMENT",
"description": "<p>Represents a comment on an Issue.</p>"
},
{
"name": "ISSUE_FIELD_ADDED_EVENT",
"description": "<p>Represents a<code>issue_field_added</code>event on a given issue.</p>"
},
{
"name": "ISSUE_FIELD_CHANGED_EVENT",
"description": "<p>Represents a<code>issue_field_changed</code>event on a given issue.</p>"
},
{
"name": "ISSUE_FIELD_REMOVED_EVENT",
"description": "<p>Represents a<code>issue_field_removed</code>event on a given issue.</p>"
},
{
"name": "ISSUE_TYPE_ADDED_EVENT",
"description": "<p>Represents a<code>issue_type_added</code>event on a given issue.</p>"
@@ -92636,6 +92797,18 @@
"name": "ISSUE_COMMENT",
"description": "<p>Represents a comment on an Issue.</p>"
},
{
"name": "ISSUE_FIELD_ADDED_EVENT",
"description": "<p>Represents a<code>issue_field_added</code>event on a given issue.</p>"
},
{
"name": "ISSUE_FIELD_CHANGED_EVENT",
"description": "<p>Represents a<code>issue_field_changed</code>event on a given issue.</p>"
},
{
"name": "ISSUE_FIELD_REMOVED_EVENT",
"description": "<p>Represents a<code>issue_field_removed</code>event on a given issue.</p>"
},
{
"name": "ISSUE_TYPE_ADDED_EVENT",
"description": "<p>Represents a<code>issue_type_added</code>event on a given issue.</p>"
@@ -93413,7 +93586,7 @@
},
{
"name": "COPILOT_CODE_REVIEW",
"description": "<p>Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.</p>"
"description": "<p>Request Copilot code review for new pull requests automatically if the author\nhas access to Copilot code review and their premium requests quota has not\nreached the limit.</p>"
},
{
"name": "CREATION",
@@ -100474,7 +100647,7 @@
"kind": "inputObjects",
"id": "copilotcodereviewparametersinput",
"href": "/graphql/reference/input-objects#copilotcodereviewparametersinput",
"description": "<p>Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.</p>",
"description": "<p>Request Copilot code review for new pull requests automatically if the author\nhas access to Copilot code review and their premium requests quota has not\nreached the limit.</p>",
"inputFields": [
{
"name": "reviewDraftPullRequests",
@@ -106190,7 +106363,7 @@
},
{
"name": "automaticCopilotCodeReviewEnabled",
"description": "<p>Request Copilot code review for new pull requests automatically if the author has access to Copilot code review.</p>",
"description": "<p>Request Copilot code review for new pull requests automatically if the author\nhas access to Copilot code review and their premium requests quota has not\nreached the limit.</p>",
"type": "Boolean",
"id": "boolean",
"kind": "scalars",
@@ -106499,7 +106672,7 @@
},
{
"name": "assigneeIds",
"description": "<p>The id of users to remove as assignees.</p>",
"description": "<p>The ids of actors to remove as assignees.</p>",
"type": "[ID!]!",
"id": "id",
"kind": "scalars",
@@ -110782,7 +110955,7 @@
"inputFields": [
{
"name": "assigneeIds",
"description": "<p>An array of Node IDs of users for this issue.</p>",
"description": "<p>An array of Node IDs of users or bots for this issue.</p>",
"type": "[ID!]",
"id": "id",
"kind": "scalars",