{"meta":{"title":"Pull requests","intro":"Reference documentation for GraphQL schema types in the Pull requests category.","product":"GraphQL API","breadcrumbs":[{"href":"/en/graphql","title":"GraphQL API"},{"href":"/en/graphql/reference","title":"Reference"},{"href":"/en/graphql/reference/pulls","title":"Pull requests"}],"documentType":"article"},"body":"# Pull requests\n\nReference documentation for GraphQL schema types in the Pull requests category.\n\n## AddedToMergeQueueEvent - object\n\nRepresents anadded_to_merge_queueevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `AddedToMergeQueueEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `enqueuer` (User): The user who added this Pull Request to the merge queue.\n* `id` (ID!): The Node ID of the AddedToMergeQueueEvent object.\n* `mergeQueue` (MergeQueue): The merge queue where this pull request was added to.\n* `pullRequest` (PullRequest): PullRequest referenced by event.\n\n## addPullRequestCreationCapBypassUsers - mutation\n\nAdd users to the pull request creation cap bypass list. Bypassed users can\ncreate pull requests regardless of the configured cap. Only users with\nmaintainer permissions can manage the bypass list. You can add a maximum of\n100 users per request. The bypass list can only hold a maximum of 100 users.\n\n### Input fields for `addPullRequestCreationCapBypassUsers`\n\n* `input` (AddPullRequestCreationCapBypassUsersInput!): \n\n### Return fields for `addPullRequestCreationCapBypassUsers`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `repository` (Repository): The repository with the updated bypass list.\n\n## AddPullRequestCreationCapBypassUsersInput - input object\n\nAutogenerated input type of AddPullRequestCreationCapBypassUsers.\n\n### Input fields for `AddPullRequestCreationCapBypassUsersInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `repositoryId` (ID!): The Node ID of the repository.\n* `userIds` ([ID!]!): The Node IDs of the users to add to the bypass list.\n\n## addPullRequestReview - mutation\n\nAdds a review to a Pull Request.\n\n### Input fields for `addPullRequestReview`\n\n* `input` (AddPullRequestReviewInput!): \n\n### Return fields for `addPullRequestReview`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestReview` (PullRequestReview): The newly created pull request review.\n* `reviewEdge` (PullRequestReviewEdge): The edge from the pull request's review connection.\n\n## addPullRequestReviewComment - mutation\n\nAdds a comment to a review.\n\n### Input fields for `addPullRequestReviewComment`\n\n* `input` (AddPullRequestReviewCommentInput!): \n\n### Return fields for `addPullRequestReviewComment`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `comment` (PullRequestReviewComment): The newly created comment.\n* `commentEdge` (PullRequestReviewCommentEdge): The edge from the review's comment connection.\n\n## AddPullRequestReviewCommentInput - input object\n\nAutogenerated input type of AddPullRequestReviewComment.\n\n### Input fields for `AddPullRequestReviewCommentInput`\n\n* `body` (String): The text of the comment. This field is required\nUpcoming Change on 2023-10-01 UTC\nDescription: body will be removed. use addPullRequestReviewThread or addPullRequestReviewThreadReply instead\nReason: We are deprecating the addPullRequestReviewComment mutation.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `commitOID` (GitObjectID): The SHA of the commit to comment on.\nUpcoming Change on 2023-10-01 UTC\nDescription: commitOID will be removed. use addPullRequestReviewThread or addPullRequestReviewThreadReply instead\nReason: We are deprecating the addPullRequestReviewComment mutation.\n* `inReplyTo` (ID): The comment id to reply to.\nUpcoming Change on 2023-10-01 UTC\nDescription: inReplyTo will be removed. use addPullRequestReviewThread or addPullRequestReviewThreadReply instead\nReason: We are deprecating the addPullRequestReviewComment mutation.\n* `path` (String): The relative path of the file to comment on.\nUpcoming Change on 2023-10-01 UTC\nDescription: path will be removed. use addPullRequestReviewThread or addPullRequestReviewThreadReply instead\nReason: We are deprecating the addPullRequestReviewComment mutation.\n* `position` (Int): The line index in the diff to comment on.\nUpcoming Change on 2023-10-01 UTC\nDescription: position will be removed. use addPullRequestReviewThread or addPullRequestReviewThreadReply instead\nReason: We are deprecating the addPullRequestReviewComment mutation.\n* `pullRequestId` (ID): The node ID of the pull request reviewing\nUpcoming Change on 2023-10-01 UTC\nDescription: pullRequestId will be removed. use\naddPullRequestReviewThread or addPullRequestReviewThreadReply instead\nReason: We are deprecating the addPullRequestReviewComment mutation.\n* `pullRequestReviewId` (ID): The Node ID of the review to modify.\nUpcoming Change on 2023-10-01 UTC\nDescription: pullRequestReviewId will be removed. use\naddPullRequestReviewThread or addPullRequestReviewThreadReply instead\nReason: We are deprecating the addPullRequestReviewComment mutation.\n\n## AddPullRequestReviewInput - input object\n\nAutogenerated input type of AddPullRequestReview.\n\n### Input fields for `AddPullRequestReviewInput`\n\n* `body` (String): The contents of the review body comment.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `comments` ([DraftPullRequestReviewComment]): The review line comments.\nUpcoming Change on 2023-10-01 UTC\nDescription: comments will be removed. use the threads argument instead\nReason: We are deprecating comment fields that use diff-relative positioning.\n* `commitOID` (GitObjectID): The commit OID the review pertains to.\n* `event` (PullRequestReviewEvent): The event to perform on the pull request review.\n* `pullRequestId` (ID!): The Node ID of the pull request to modify.\n* `threads` ([DraftPullRequestReviewThread]): The review line comment threads.\n\n## addPullRequestReviewThread - mutation\n\nAdds a new thread to a pending Pull Request Review.\n\n### Input fields for `addPullRequestReviewThread`\n\n* `input` (AddPullRequestReviewThreadInput!): \n\n### Return fields for `addPullRequestReviewThread`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `thread` (PullRequestReviewThread): The newly created thread.\n\n## AddPullRequestReviewThreadInput - input object\n\nAutogenerated input type of AddPullRequestReviewThread.\n\n### Input fields for `AddPullRequestReviewThreadInput`\n\n* `body` (String!): Body of the thread's first comment.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `line` (Int): The line of the blob to which the thread refers, required for line-level\nthreads. The end of the line range for multi-line comments.\n* `path` (String): Path to the file being commented on.\n* `pullRequestId` (ID): The node ID of the pull request reviewing.\n* `pullRequestReviewId` (ID): The Node ID of the review to modify.\n* `side` (DiffSide): The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.\n* `startLine` (Int): The first line of the range to which the comment refers.\n* `startSide` (DiffSide): The side of the diff on which the start line resides.\n* `subjectType` (PullRequestReviewThreadSubjectType): The level at which the comments in the corresponding thread are targeted, can be a diff line or a file.\n\n## addPullRequestReviewThreadReply - mutation\n\nAdds a reply to an existing Pull Request Review Thread.\n\n### Input fields for `addPullRequestReviewThreadReply`\n\n* `input` (AddPullRequestReviewThreadReplyInput!): \n\n### Return fields for `addPullRequestReviewThreadReply`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `comment` (PullRequestReviewComment): The newly created reply.\n\n## AddPullRequestReviewThreadReplyInput - input object\n\nAutogenerated input type of AddPullRequestReviewThreadReply.\n\n### Input fields for `AddPullRequestReviewThreadReplyInput`\n\n* `body` (String!): The text of the reply.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestReviewId` (ID): The Node ID of the pending review to which the reply will belong.\n* `pullRequestReviewThreadId` (ID!): The Node ID of the thread to which this reply is being written.\n\n## archivePullRequest - mutation\n\nArchive a pull request. Closes, locks, and marks the pull request as archived.\nOnly repository admins can archive pull requests.\n\n### Input fields for `archivePullRequest`\n\n* `input` (ArchivePullRequestInput!): \n\n### Return fields for `archivePullRequest`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The pull request that was archived.\n\n## ArchivePullRequestInput - input object\n\nAutogenerated input type of ArchivePullRequest.\n\n### Input fields for `ArchivePullRequestInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestId` (ID!): The Node ID of the pull request to archive.\n\n## AutomaticBaseChangeFailedEvent - object\n\nRepresents aautomatic_base_change_failedevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `AutomaticBaseChangeFailedEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `id` (ID!): The Node ID of the AutomaticBaseChangeFailedEvent object.\n* `newBase` (String!): The new base for this PR.\n* `oldBase` (String!): The old base for this PR.\n* `pullRequest` (PullRequest!): PullRequest referenced by event.\n\n## AutomaticBaseChangeSucceededEvent - object\n\nRepresents aautomatic_base_change_succeededevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `AutomaticBaseChangeSucceededEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `id` (ID!): The Node ID of the AutomaticBaseChangeSucceededEvent object.\n* `newBase` (String!): The new base for this PR.\n* `oldBase` (String!): The old base for this PR.\n* `pullRequest` (PullRequest!): PullRequest referenced by event.\n\n## AutoMergeDisabledEvent - object\n\nRepresents aauto_merge_disabledevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `AutoMergeDisabledEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `disabler` (User): The user who disabled auto-merge for this Pull Request.\n* `id` (ID!): The Node ID of the AutoMergeDisabledEvent object.\n* `pullRequest` (PullRequest): PullRequest referenced by event.\n* `reason` (String): The reason auto-merge was disabled.\n* `reasonCode` (String): The reason_code relating to why auto-merge was disabled.\n\n## AutoMergeEnabledEvent - object\n\nRepresents aauto_merge_enabledevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `AutoMergeEnabledEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `enabler` (User): The user who enabled auto-merge for this Pull Request.\n* `id` (ID!): The Node ID of the AutoMergeEnabledEvent object.\n* `pullRequest` (PullRequest): PullRequest referenced by event.\n\n## AutoMergeRequest - object\n\nRepresents an auto-merge request for a pull request.\n\n### Fields for `AutoMergeRequest`\n\n* `authorEmail` (String): The email address of the author of this auto-merge request.\n* `commitBody` (String): The commit message of the auto-merge request. If a merge queue is required by\nthe base branch, this value will be set by the merge queue when merging.\n* `commitHeadline` (String): The commit title of the auto-merge request. If a merge queue is required by\nthe base branch, this value will be set by the merge queue when merging.\n* `enabledAt` (DateTime): When was this auto-merge request was enabled.\n* `enabledBy` (Actor): The actor who created the auto-merge request.\n* `mergeMethod` (PullRequestMergeMethod!): The merge method of the auto-merge request. If a merge queue is required by\nthe base branch, this value will be set by the merge queue when merging.\n* `pullRequest` (PullRequest!): The pull request that this auto-merge request is set against.\n\n## AutoRebaseEnabledEvent - object\n\nRepresents aauto_rebase_enabledevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `AutoRebaseEnabledEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `enabler` (User): The user who enabled auto-merge (rebase) for this Pull Request.\n* `id` (ID!): The Node ID of the AutoRebaseEnabledEvent object.\n* `pullRequest` (PullRequest): PullRequest referenced by event.\n\n## AutoSquashEnabledEvent - object\n\nRepresents aauto_squash_enabledevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `AutoSquashEnabledEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `enabler` (User): The user who enabled auto-merge (squash) for this Pull Request.\n* `id` (ID!): The Node ID of the AutoSquashEnabledEvent object.\n* `pullRequest` (PullRequest): PullRequest referenced by event.\n\n## BaseRefChangedEvent - object\n\nRepresents abase_ref_changedevent on a given issue or pull request.\n\n**Implements:** Node\n\n### Fields for `BaseRefChangedEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `currentRefName` (String!): Identifies the name of the base ref for the pull request after it was changed.\n* `databaseId` (Int): Identifies the primary key from the database.\n* `id` (ID!): The Node ID of the BaseRefChangedEvent object.\n* `previousRefName` (String!): Identifies the name of the base ref for the pull request before it was changed.\n* `pullRequest` (PullRequest!): PullRequest referenced by event.\n\n## BaseRefDeletedEvent - object\n\nRepresents abase_ref_deletedevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `BaseRefDeletedEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `baseRefName` (String): Identifies the name of the Ref associated with the base_ref_deleted event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `id` (ID!): The Node ID of the BaseRefDeletedEvent object.\n* `pullRequest` (PullRequest): PullRequest referenced by event.\n\n## BaseRefForcePushedEvent - object\n\nRepresents abase_ref_force_pushedevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `BaseRefForcePushedEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `afterCommit` (Commit): Identifies the after commit SHA for thebase_ref_force_pushedevent.\n* `beforeCommit` (Commit): Identifies the before commit SHA for thebase_ref_force_pushedevent.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `id` (ID!): The Node ID of the BaseRefForcePushedEvent object.\n* `pullRequest` (PullRequest!): PullRequest referenced by event.\n* `ref` (Ref): Identifies the fully qualified ref name for thebase_ref_force_pushedevent.\n\n## closePullRequest - mutation\n\nClose a pull request.\n\n### Input fields for `closePullRequest`\n\n* `input` (ClosePullRequestInput!): \n\n### Return fields for `closePullRequest`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The pull request that was closed.\n\n## ClosePullRequestInput - input object\n\nAutogenerated input type of ClosePullRequest.\n\n### Input fields for `ClosePullRequestInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestId` (ID!): ID of the pull request to be closed.\n\n## ConvertedFromDraftEvent - object\n\nRepresents aconverted_from_draftevent on a given issue or pull request.\n\n**Implements:** Node, ProjectV2Event\n\n### Fields for `ConvertedFromDraftEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `id` (ID!): The Node ID of the ConvertedFromDraftEvent object.\n* `project` (ProjectV2): Project referenced by event.\n* `wasAutomated` (Boolean!): Did this event result from workflow automation?.\n\n## convertPullRequestToDraft - mutation\n\nConverts a pull request to draft.\n\n### Input fields for `convertPullRequestToDraft`\n\n* `input` (ConvertPullRequestToDraftInput!): \n\n### Return fields for `convertPullRequestToDraft`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The pull request that is now a draft.\n\n## ConvertPullRequestToDraftInput - input object\n\nAutogenerated input type of ConvertPullRequestToDraft.\n\n### Input fields for `ConvertPullRequestToDraftInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestId` (ID!): ID of the pull request to convert to draft.\n\n## ConvertToDraftEvent - object\n\nRepresents aconvert_to_draftevent on a given pull request.\n\n**Implements:** Node, UniformResourceLocatable\n\n### Fields for `ConvertToDraftEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `id` (ID!): The Node ID of the ConvertToDraftEvent object.\n* `pullRequest` (PullRequest!): PullRequest referenced by event.\n* `resourcePath` (URI!): The HTTP path for this convert to draft event.\n* `url` (URI!): The HTTP URL for this convert to draft event.\n\n## CopilotCodeReviewParameters - object\n\nRequest 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.\n\n### Fields for `CopilotCodeReviewParameters`\n\n* `reviewDraftPullRequests` (Boolean!): Copilot automatically reviews draft pull requests before they are marked as ready for review.\n* `reviewOnPush` (Boolean!): Copilot automatically reviews each new push to the pull request.\n\n## CopilotCodeReviewParametersInput - input object\n\nRequest 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.\n\n### Input fields for `CopilotCodeReviewParametersInput`\n\n* `reviewDraftPullRequests` (Boolean): Copilot automatically reviews draft pull requests before they are marked as ready for review.\n* `reviewOnPush` (Boolean): Copilot automatically reviews each new push to the pull request.\n\n## createPullRequest - mutation\n\nCreate a new pull request.\n\n### Input fields for `createPullRequest`\n\n* `input` (CreatePullRequestInput!): \n\n### Return fields for `createPullRequest`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The new pull request.\n\n## CreatePullRequestInput - input object\n\nAutogenerated input type of CreatePullRequest.\n\n### Input fields for `CreatePullRequestInput`\n\n* `baseRefName` (String!): The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.\n* `body` (String): The contents of the pull request.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `draft` (Boolean): Indicates whether this pull request should be a draft.\n* `headRefName` (String!): The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace head_ref_name with a user like this: username:branch.\n* `headRepositoryId` (ID): The Node ID of the head repository.\n* `maintainerCanModify` (Boolean): Indicates whether maintainers can modify the pull request.\n* `repositoryId` (ID!): The Node ID of the repository.\n* `title` (String!): The title of the pull request.\n\n## deletePullRequestReview - mutation\n\nDeletes a pull request review.\n\n### Input fields for `deletePullRequestReview`\n\n* `input` (DeletePullRequestReviewInput!): \n\n### Return fields for `deletePullRequestReview`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestReview` (PullRequestReview): The deleted pull request review.\n\n## deletePullRequestReviewComment - mutation\n\nDeletes a pull request review comment.\n\n### Input fields for `deletePullRequestReviewComment`\n\n* `input` (DeletePullRequestReviewCommentInput!): \n\n### Return fields for `deletePullRequestReviewComment`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestReview` (PullRequestReview): The pull request review the deleted comment belonged to.\n* `pullRequestReviewComment` (PullRequestReviewComment): The deleted pull request review comment.\n\n## DeletePullRequestReviewCommentInput - input object\n\nAutogenerated input type of DeletePullRequestReviewComment.\n\n### Input fields for `DeletePullRequestReviewCommentInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `id` (ID!): The ID of the comment to delete.\n\n## DeletePullRequestReviewInput - input object\n\nAutogenerated input type of DeletePullRequestReview.\n\n### Input fields for `DeletePullRequestReviewInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestReviewId` (ID!): The Node ID of the pull request review to delete.\n\n## dequeuePullRequest - mutation\n\nRemove a pull request from the merge queue.\n\n### Input fields for `dequeuePullRequest`\n\n* `input` (DequeuePullRequestInput!): \n\n### Return fields for `dequeuePullRequest`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `mergeQueueEntry` (MergeQueueEntry): The merge queue entry of the dequeued pull request.\n\n## DequeuePullRequestInput - input object\n\nAutogenerated input type of DequeuePullRequest.\n\n### Input fields for `DequeuePullRequestInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `id` (ID!): The ID of the pull request to be dequeued.\n\n## DiffSide - enum\n\nThe possible sides of a diff.\n\n### Values for `DiffSide`\n\n* `LEFT`: The left side of the diff.\n* `RIGHT`: The right side of the diff.\n\n## disablePullRequestAutoMerge - mutation\n\nDisable auto merge on the given pull request.\n\n### Input fields for `disablePullRequestAutoMerge`\n\n* `input` (DisablePullRequestAutoMergeInput!): \n\n### Return fields for `disablePullRequestAutoMerge`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The pull request auto merge was disabled on.\n\n## DisablePullRequestAutoMergeInput - input object\n\nAutogenerated input type of DisablePullRequestAutoMerge.\n\n### Input fields for `DisablePullRequestAutoMergeInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestId` (ID!): ID of the pull request to disable auto merge on.\n\n## DismissalRestriction - object\n\nSpecify people, teams, or apps allowed to dismiss pull request reviews.\n\n### Fields for `DismissalRestriction`\n\n* `allowedActors` ([ID!]): Specify people, teams, or apps allowed to dismiss pull request reviews.\n* `enabled` (Boolean!): Whether to restrict review dismissal to specific actors.\n\n## DismissalRestrictionInput - input object\n\nSpecify people, teams, or apps allowed to dismiss pull request reviews.\n\n### Input fields for `DismissalRestrictionInput`\n\n* `allowedActors` ([ID!]): Specify people, teams, or apps allowed to dismiss pull request reviews.\n* `enabled` (Boolean!): Whether to restrict review dismissal to specific actors.\n\n## dismissPullRequestReview - mutation\n\nDismisses an approved or rejected pull request review.\n\n### Input fields for `dismissPullRequestReview`\n\n* `input` (DismissPullRequestReviewInput!): \n\n### Return fields for `dismissPullRequestReview`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestReview` (PullRequestReview): The dismissed pull request review.\n\n## DismissPullRequestReviewInput - input object\n\nAutogenerated input type of DismissPullRequestReview.\n\n### Input fields for `DismissPullRequestReviewInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `message` (String!): The contents of the pull request review dismissal message.\n* `pullRequestReviewId` (ID!): The Node ID of the pull request review to modify.\n\n## DraftPullRequestReviewComment - input object\n\nSpecifies a review comment to be left with a Pull Request Review.\n\n### Input fields for `DraftPullRequestReviewComment`\n\n* `body` (String!): Body of the comment to leave.\n* `path` (String!): Path to the file being commented on.\n* `position` (Int!): Position in the file to leave a comment on.\n\n## DraftPullRequestReviewThread - input object\n\nSpecifies a review comment thread to be left with a Pull Request Review.\n\n### Input fields for `DraftPullRequestReviewThread`\n\n* `body` (String!): Body of the comment to leave.\n* `line` (Int): The line of the blob to which the thread refers. The end of the line range for\nmulti-line comments. Required if not using positioning.\n* `path` (String): Path to the file being commented on. Required if not using positioning.\n* `side` (DiffSide): The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.\n* `startLine` (Int): The first line of the range to which the comment refers.\n* `startSide` (DiffSide): The side of the diff on which the start line resides.\n\n## enablePullRequestAutoMerge - mutation\n\nEnable the default auto-merge on a pull request.\n\n### Input fields for `enablePullRequestAutoMerge`\n\n* `input` (EnablePullRequestAutoMergeInput!): \n\n### Return fields for `enablePullRequestAutoMerge`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The pull request auto-merge was enabled on.\n\n## EnablePullRequestAutoMergeInput - input object\n\nAutogenerated input type of EnablePullRequestAutoMerge.\n\n### Input fields for `EnablePullRequestAutoMergeInput`\n\n* `authorEmail` (String): The email address to associate with this merge.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `commitBody` (String): Commit body to use for the commit when the PR is mergable; if omitted, a\ndefault message will be used. NOTE: when merging with a merge queue any input\nvalue for commit message is ignored.\n* `commitHeadline` (String): Commit headline to use for the commit when the PR is mergable; if omitted, a\ndefault message will be used. NOTE: when merging with a merge queue any input\nvalue for commit headline is ignored.\n* `expectedHeadOid` (GitObjectID): The expected head OID of the pull request.\n* `mergeMethod` (PullRequestMergeMethod): The merge method to use. If omitted, defaults to MERGE. NOTE: when merging\nwith a merge queue any input value for merge method is ignored.\n* `pullRequestId` (ID!): ID of the pull request to enable auto-merge on.\n\n## enqueuePullRequest - mutation\n\nAdd a pull request to the merge queue.\n\n### Input fields for `enqueuePullRequest`\n\n* `input` (EnqueuePullRequestInput!): \n\n### Return fields for `enqueuePullRequest`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `mergeQueueEntry` (MergeQueueEntry): The merge queue entry for the enqueued pull request.\n\n## EnqueuePullRequestInput - input object\n\nAutogenerated input type of EnqueuePullRequest.\n\n### Input fields for `EnqueuePullRequestInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `expectedHeadOid` (GitObjectID): The expected head OID of the pull request.\n* `jump` (Boolean): Add the pull request to the front of the queue.\n* `pullRequestId` (ID!): The ID of the pull request to enqueue.\n\n## FileViewedState - enum\n\nThe possible viewed states of a file .\n\n### Values for `FileViewedState`\n\n* `DISMISSED`: The file has new changes since last viewed.\n* `UNVIEWED`: The file has not been marked as viewed.\n* `VIEWED`: The file has been marked as viewed.\n\n## HeadRefDeletedEvent - object\n\nRepresents ahead_ref_deletedevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `HeadRefDeletedEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `headRef` (Ref): Identifies the Ref associated with the head_ref_deleted event.\n* `headRefName` (String!): Identifies the name of the Ref associated with the head_ref_deleted event.\n* `id` (ID!): The Node ID of the HeadRefDeletedEvent object.\n* `pullRequest` (PullRequest!): PullRequest referenced by event.\n\n## HeadRefForcePushedEvent - object\n\nRepresents ahead_ref_force_pushedevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `HeadRefForcePushedEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `afterCommit` (Commit): Identifies the after commit SHA for thehead_ref_force_pushedevent.\n* `beforeCommit` (Commit): Identifies the before commit SHA for thehead_ref_force_pushedevent.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `id` (ID!): The Node ID of the HeadRefForcePushedEvent object.\n* `pullRequest` (PullRequest!): PullRequest referenced by event.\n* `ref` (Ref): Identifies the fully qualified ref name for thehead_ref_force_pushedevent.\n\n## HeadRefRestoredEvent - object\n\nRepresents ahead_ref_restoredevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `HeadRefRestoredEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `id` (ID!): The Node ID of the HeadRefRestoredEvent object.\n* `pullRequest` (PullRequest!): PullRequest referenced by event.\n\n## markFileAsViewed - mutation\n\nMark a pull request file as viewed.\n\n### Input fields for `markFileAsViewed`\n\n* `input` (MarkFileAsViewedInput!): \n\n### Return fields for `markFileAsViewed`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The updated pull request.\n\n## MarkFileAsViewedInput - input object\n\nAutogenerated input type of MarkFileAsViewed.\n\n### Input fields for `MarkFileAsViewedInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `path` (String!): The path of the file to mark as viewed.\n* `pullRequestId` (ID!): The Node ID of the pull request.\n\n## markPullRequestReadyForReview - mutation\n\nMarks a pull request ready for review.\n\n### Input fields for `markPullRequestReadyForReview`\n\n* `input` (MarkPullRequestReadyForReviewInput!): \n\n### Return fields for `markPullRequestReadyForReview`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The pull request that is ready for review.\n\n## MarkPullRequestReadyForReviewInput - input object\n\nAutogenerated input type of MarkPullRequestReadyForReview.\n\n### Input fields for `MarkPullRequestReadyForReviewInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestId` (ID!): ID of the pull request to be marked as ready for review.\n\n## MergeableState - enum\n\nWhether or not a PullRequest can be merged.\n\n### Values for `MergeableState`\n\n* `CONFLICTING`: The pull request cannot be merged due to merge conflicts.\n* `MERGEABLE`: The pull request can be merged.\n* `UNKNOWN`: The mergeability of the pull request is still being calculated.\n\n## MergedEvent - object\n\nRepresents amergedevent on a given pull request.\n\n**Implements:** Node, UniformResourceLocatable\n\n### Fields for `MergedEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `commit` (Commit): Identifies the commit associated with the merge event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `id` (ID!): The Node ID of the MergedEvent object.\n* `mergeRef` (Ref): Identifies the Ref associated with the merge event.\n* `mergeRefName` (String!): Identifies the name of the Ref associated with the merge event.\n* `pullRequest` (PullRequest!): PullRequest referenced by event.\n* `resourcePath` (URI!): The HTTP path for this merged event.\n* `url` (URI!): The HTTP URL for this merged event.\n\n## mergePullRequest - mutation\n\nMerge a pull request.\n\n### Input fields for `mergePullRequest`\n\n* `input` (MergePullRequestInput!): \n\n### Return fields for `mergePullRequest`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The pull request that was merged.\n\n## MergePullRequestInput - input object\n\nAutogenerated input type of MergePullRequest.\n\n### Input fields for `MergePullRequestInput`\n\n* `authorEmail` (String): The email address to associate with this merge.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `commitBody` (String): Commit body to use for the merge commit; if omitted, a default message will be used.\n* `commitHeadline` (String): Commit headline to use for the merge commit; if omitted, a default message will be used.\n* `expectedHeadOid` (GitObjectID): OID that the pull request head ref must match to allow merge; if omitted, no check is performed.\n* `mergeMethod` (PullRequestMergeMethod): The merge method to use. If omitted, defaults to 'MERGE'.\n* `pullRequestId` (ID!): ID of the pull request to be merged.\n\n## MergeQueue - object\n\nThe queue of pull request entries to be merged into a protected branch in a repository.\n\n**Implements:** Node\n\n### Fields for `MergeQueue`\n\n* `configuration` (MergeQueueConfiguration): The configuration for this merge queue.\n* `entries` (MergeQueueEntryConnection): The entries in the queue. _(Pagination: `after`, `before`, `first`, `last`)_\n* `id` (ID!): The Node ID of the MergeQueue object.\n* `nextEntryEstimatedTimeToMerge` (Int): The estimated time in seconds until a newly added entry would be merged.\n* `repository` (Repository): The repository this merge queue belongs to.\n* `resourcePath` (URI!): The HTTP path for this merge queue.\n* `url` (URI!): The HTTP URL for this merge queue.\n\n## MergeQueueConfiguration - object\n\nConfiguration for a MergeQueue.\n\n### Fields for `MergeQueueConfiguration`\n\n* `checkResponseTimeout` (Int): The amount of time in minutes to wait for a check response before considering it a failure.\n* `maximumEntriesToBuild` (Int): The maximum number of entries to build at once.\n* `maximumEntriesToMerge` (Int): The maximum number of entries to merge at once.\n* `mergeMethod` (PullRequestMergeMethod): The merge method to use for this queue.\n* `mergingStrategy` (MergeQueueMergingStrategy): The strategy to use when merging entries.\n* `minimumEntriesToMerge` (Int): The minimum number of entries required to merge at once.\n* `minimumEntriesToMergeWaitTime` (Int): The amount of time in minutes to wait before ignoring the minumum number of\nentries in the queue requirement and merging a collection of entries.\n\n## MergeQueueEntry - object\n\nEntries in a MergeQueue.\n\n**Implements:** Node\n\n### Fields for `MergeQueueEntry`\n\n* `baseCommit` (Commit): The base commit for this entry.\n* `enqueuedAt` (DateTime!): The date and time this entry was added to the merge queue.\n* `enqueuer` (Actor!): The actor that enqueued this entry.\n* `estimatedTimeToMerge` (Int): The estimated time in seconds until this entry will be merged.\n* `headCommit` (Commit): The head commit for this entry.\n* `id` (ID!): The Node ID of the MergeQueueEntry object.\n* `jump` (Boolean!): Whether this pull request should jump the queue.\n* `mergeQueue` (MergeQueue): The merge queue that this entry belongs to.\n* `position` (Int!): The position of this entry in the queue.\n* `pullRequest` (PullRequest): The pull request that will be added to a merge group.\n* `solo` (Boolean!): Does this pull request need to be deployed on its own.\n* `state` (MergeQueueEntryState!): The state of this entry in the queue.\n\n## MergeQueueEntryConnection - object\n\nThe connection type for MergeQueueEntry.\n\n### Fields for `MergeQueueEntryConnection`\n\n* `edges` ([MergeQueueEntryEdge]): A list of edges.\n* `nodes` ([MergeQueueEntry]): A list of nodes.\n* `pageInfo` (PageInfo!): Information to aid in pagination.\n* `totalCount` (Int!): Identifies the total count of items in the connection.\n\n## MergeQueueEntryEdge - object\n\nAn edge in a connection.\n\n### Fields for `MergeQueueEntryEdge`\n\n* `cursor` (String!): A cursor for use in pagination.\n* `node` (MergeQueueEntry): The item at the end of the edge.\n\n## MergeQueueEntryState - enum\n\nThe possible states for a merge queue entry.\n\n### Values for `MergeQueueEntryState`\n\n* `AWAITING_CHECKS`: The entry is currently waiting for checks to pass.\n* `LOCKED`: The entry is currently locked.\n* `MERGEABLE`: The entry is currently mergeable.\n* `QUEUED`: The entry is currently queued.\n* `UNMERGEABLE`: The entry is currently unmergeable.\n\n## MergeQueueGroupingStrategy - enum\n\nWhen set to ALLGREEN, the merge commit created by merge queue for each PR in the\ngroup must pass all required checks to merge. When set to HEADGREEN, only the\ncommit at the head of the merge group, i.e. the commit containing changes from\nall of the PRs in the group, must pass its required checks to merge.\n\n### Values for `MergeQueueGroupingStrategy`\n\n* `ALLGREEN`: The merge commit created by merge queue for each PR in the group must pass all required checks to merge.\n* `HEADGREEN`: Only the commit at the head of the merge group must pass its required checks to merge.\n\n## MergeQueueMergeMethod - enum\n\nMethod to use when merging changes from queued pull requests.\n\n### Values for `MergeQueueMergeMethod`\n\n* `MERGE`: Merge commit.\n* `REBASE`: Rebase and merge.\n* `SQUASH`: Squash and merge.\n\n## MergeQueueMergingStrategy - enum\n\nThe possible merging strategies for a merge queue.\n\n### Values for `MergeQueueMergingStrategy`\n\n* `ALLGREEN`: Entries only allowed to merge if they are passing.\n* `HEADGREEN`: Failing Entires are allowed to merge if they are with a passing entry.\n\n## MergeQueueParameters - object\n\nMerges must be performed via a merge queue.\n\n### Fields for `MergeQueueParameters`\n\n* `checkResponseTimeoutMinutes` (Int!): Maximum time for a required status check to report a conclusion. After this\nmuch time has elapsed, checks that have not reported a conclusion will be\nassumed to have failed.\n* `groupingStrategy` (MergeQueueGroupingStrategy!): When set to ALLGREEN, the merge commit created by merge queue for each PR in\nthe group must pass all required checks to merge. When set to HEADGREEN, only\nthe commit at the head of the merge group, i.e. the commit containing changes\nfrom all of the PRs in the group, must pass its required checks to merge.\n* `maxEntriesToBuild` (Int!): Limit the number of queued pull requests requesting checks and workflow runs at the same time.\n* `maxEntriesToMerge` (Int!): The maximum number of PRs that will be merged together in a group.\n* `mergeMethod` (MergeQueueMergeMethod!): Method to use when merging changes from queued pull requests.\n* `minEntriesToMerge` (Int!): The minimum number of PRs that will be merged together in a group.\n* `minEntriesToMergeWaitMinutes` (Int!): The time merge queue should wait after the first PR is added to the queue for\nthe minimum group size to be met. After this time has elapsed, the minimum\ngroup size will be ignored and a smaller group will be merged.\n\n## MergeQueueParametersInput - input object\n\nMerges must be performed via a merge queue.\n\n### Input fields for `MergeQueueParametersInput`\n\n* `checkResponseTimeoutMinutes` (Int!): Maximum time for a required status check to report a conclusion. After this\nmuch time has elapsed, checks that have not reported a conclusion will be\nassumed to have failed.\n* `groupingStrategy` (MergeQueueGroupingStrategy!): When set to ALLGREEN, the merge commit created by merge queue for each PR in\nthe group must pass all required checks to merge. When set to HEADGREEN, only\nthe commit at the head of the merge group, i.e. the commit containing changes\nfrom all of the PRs in the group, must pass its required checks to merge.\n* `maxEntriesToBuild` (Int!): Limit the number of queued pull requests requesting checks and workflow runs at the same time.\n* `maxEntriesToMerge` (Int!): The maximum number of PRs that will be merged together in a group.\n* `mergeMethod` (MergeQueueMergeMethod!): Method to use when merging changes from queued pull requests.\n* `minEntriesToMerge` (Int!): The minimum number of PRs that will be merged together in a group.\n* `minEntriesToMergeWaitMinutes` (Int!): The time merge queue should wait after the first PR is added to the queue for\nthe minimum group size to be met. After this time has elapsed, the minimum\ngroup size will be ignored and a smaller group will be merged.\n\n## MergeStateStatus - enum\n\nDetailed status information about a pull request merge.\n\n### Values for `MergeStateStatus`\n\n* `BEHIND`: The head ref is out of date.\n* `BLOCKED`: The merge is blocked.\n* `CLEAN`: Mergeable and passing commit status.\n* `DIRTY`: The merge commit cannot be cleanly created.\n* `DRAFT`: The merge is blocked due to the pull request being a draft.\n* `HAS_HOOKS`: Mergeable with passing commit status and pre-receive hooks.\n* `UNKNOWN`: The state cannot currently be determined.\n* `UNSTABLE`: Mergeable with non-passing commit status.\n\n## PatchStatus - enum\n\nThe possible types of patch statuses.\n\n### Values for `PatchStatus`\n\n* `ADDED`: The file was added. Git status 'A'.\n* `CHANGED`: The file's type was changed. Git status 'T'.\n* `COPIED`: The file was copied. Git status 'C'.\n* `DELETED`: The file was deleted. Git status 'D'.\n* `MODIFIED`: The file's contents were changed. Git status 'M'.\n* `RENAMED`: The file was renamed. Git status 'R'.\n\n## PullRequest - object\n\nA repository pull request.\n\n**Implements:** Assignable, Closable, Comment, Labelable, Lockable, Node, ProjectV2Owner, Reactable, RepositoryNode, Subscribable, UniformResourceLocatable, Updatable, UpdatableComment\n\n### Fields for `PullRequest`\n\n* `activeLockReason` (LockReason): Reason that the conversation was locked.\n* `additions` (Int!): The number of additions in this pull request.\n* `assignedActors` (AssigneeConnection!): A list of actors assigned to this object. _(Pagination: `after`, `before`, `first`, `last`)_\n* `assignees` (UserConnection!): A list of Users assigned to this object. _(Pagination: `after`, `before`, `first`, `last`)_\n* `author` (Actor): The actor who authored the comment.\n* `authorAssociation` (CommentAuthorAssociation!): Author's association with the subject of the comment.\n* `autoMergeRequest` (AutoMergeRequest): Returns the auto-merge request object if one exists for this pull request.\n* `baseRef` (Ref): Identifies the base Ref associated with the pull request.\n* `baseRefName` (String!): Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.\n* `baseRefOid` (GitObjectID!): Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.\n* `baseRepository` (Repository): The repository associated with this pull request's base Ref.\n* `body` (String!): The body as Markdown.\n* `bodyHTML` (HTML!): The body rendered to HTML.\n* `bodyText` (String!): The body rendered to text.\n* `canBeRebased` (Boolean!): Whether or not the pull request is rebaseable.\n* `changedFiles` (Int!): The number of changed files in this pull request.\n* `checksResourcePath` (URI!): The HTTP path for the checks of this pull request.\n* `checksUrl` (URI!): The HTTP URL for the checks of this pull request.\n* `closed` (Boolean!): true if the pull request is closed.\n* `closedAt` (DateTime): Identifies the date and time when the object was closed.\n* `closingIssuesReferences` (IssueConnection): List of issues that may be closed by this pull request.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `orderBy` (IssueOrder): Ordering options for issues returned from the connection.\n  * `userLinkedOnly` (Boolean): Return only manually linked Issues.\n\n* `comments` (IssueCommentConnection!): A list of comments associated with the pull request.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `orderBy` (IssueCommentOrder): Ordering options for issue comments returned from the connection.\n\n* `commits` (PullRequestCommitConnection!): A list of commits present in this pull request's head branch not present in the base branch. _(Pagination: `after`, `before`, `first`, `last`)_\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `createdViaEmail` (Boolean!): Check if this comment was created via an email reply.\n* `databaseId` (Int): Identifies the primary key from the database. **Deprecated:** databaseId will be removed because it does not support 64-bit signed integer identifiers. Use fullDatabaseId instead. Removal on 2024-07-01 UTC.\n* `deletions` (Int!): The number of deletions in this pull request.\n* `editor` (Actor): The actor who edited this pull request's body.\n* `files` (PullRequestChangedFileConnection): Lists the files changed within this pull request. _(Pagination: `after`, `before`, `first`, `last`)_\n* `fullDatabaseId` (BigInt): Identifies the primary key from the database as a BigInt.\n* `headRef` (Ref): Identifies the head Ref associated with the pull request.\n* `headRefName` (String!): Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.\n* `headRefOid` (GitObjectID!): Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.\n* `headRepository` (Repository): The repository associated with this pull request's head Ref.\n* `headRepositoryOwner` (RepositoryOwner): The owner of the repository associated with this pull request's head Ref.\n* `hovercard` (Hovercard!): The hovercard information for this issue.\n  * `includeNotificationContexts` (Boolean): Whether or not to include notification contexts. Default: `true`.\n\n* `id` (ID!): The Node ID of the PullRequest object.\n* `includesCreatedEdit` (Boolean!): Check if this comment was edited and includes an edit with the creation data.\n* `isCrossRepository` (Boolean!): The head and base repositories are different.\n* `isDraft` (Boolean!): Identifies if the pull request is a draft.\n* `isInMergeQueue` (Boolean!): Indicates whether the pull request is in a merge queue.\n* `isMergeQueueEnabled` (Boolean!): Indicates whether the pull request's base ref has a merge queue enabled.\n* `isReadByViewer` (Boolean): Is this pull request read by the viewer.\n* `labels` (LabelConnection): A list of labels associated with the object.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `orderBy` (LabelOrder): Ordering options for labels returned from the connection.\n\n* `lastEditedAt` (DateTime): The moment the editor made the last edit.\n* `latestOpinionatedReviews` (PullRequestReviewConnection): A list of latest reviews per user associated with the pull request.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `writersOnly` (Boolean): Only return reviews from user who have write access to the repository.\n\n* `latestReviews` (PullRequestReviewConnection): A list of latest reviews per user associated with the pull request that are not also pending review. _(Pagination: `after`, `before`, `first`, `last`)_\n* `locked` (Boolean!): true if the pull request is locked.\n* `maintainerCanModify` (Boolean!): Indicates whether maintainers can modify the pull request.\n* `mergeCommit` (Commit): The commit that was created when this pull request was merged.\n* `mergeQueue` (MergeQueue): The merge queue for the pull request's base branch.\n* `mergeQueueEntry` (MergeQueueEntry): The merge queue entry of the pull request in the base branch's merge queue.\n* `mergeStateStatus` (MergeStateStatus!): Detailed information about the current pull request merge state status.\n* `mergeable` (MergeableState!): Whether or not the pull request can be merged based on the existence of merge conflicts.\n* `merged` (Boolean!): Whether or not the pull request was merged.\n* `mergedAt` (DateTime): The date and time that the pull request was merged.\n* `mergedBy` (Actor): The actor who merged the pull request.\n* `milestone` (Milestone): Identifies the milestone associated with the pull request.\n* `number` (Int!): Identifies the pull request number.\n* `participants` (UserConnection!): A list of Users that are participating in the Pull Request conversation. _(Pagination: `after`, `before`, `first`, `last`)_\n* `permalink` (URI!): The permalink to the pull request.\n* `potentialMergeCommit` (Commit): The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\nmergeable field for more details on the mergeability of the pull request.\n* `projectCards` (ProjectCardConnection!): List of project cards associated with this pull request. **Deprecated:** Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `archivedStates` ([ProjectCardArchivedState]): A list of archived states to filter the cards by.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n\n* `projectItems` (ProjectV2ItemConnection): List of project items associated with this pull request.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `includeArchived` (Boolean): Include archived items. Default: `true`.\n  * `last` (Int): Returns the last n elements from the list.\n\n* `projectV2` (ProjectV2): Find a project by number.\n  * `number` (Int!): The project number.\n\n* `projectsV2` (ProjectV2Connection!): A list of projects under the owner.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `minPermissionLevel` (ProjectV2PermissionLevel): Filter projects based on user role. Default: `READ`.\n  * `orderBy` (ProjectV2Order): How to order the returned projects.\n  * `query` (String): A project to search for under the owner.\n\n* `publishedAt` (DateTime): Identifies when the comment was published at.\n* `reactionGroups` ([ReactionGroup!]): A list of reactions grouped by content left on the subject.\n* `reactions` (ReactionConnection!): A list of Reactions left on the Issue.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `content` (ReactionContent): Allows filtering Reactions by emoji.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `orderBy` (ReactionOrder): Allows specifying the order in which reactions are returned.\n\n* `repository` (Repository!): The repository associated with this node.\n* `resourcePath` (URI!): The HTTP path for this pull request.\n* `revertResourcePath` (URI!): The HTTP path for reverting this pull request.\n* `revertUrl` (URI!): The HTTP URL for reverting this pull request.\n* `reviewDecision` (PullRequestReviewDecision): The current status of this pull request with respect to code review.\n* `reviewRequests` (ReviewRequestConnection): A list of review requests associated with the pull request. _(Pagination: `after`, `before`, `first`, `last`)_\n* `reviewThreads` (PullRequestReviewThreadConnection!): The list of all review threads for this pull request. _(Pagination: `after`, `before`, `first`, `last`)_\n* `reviews` (PullRequestReviewConnection): A list of reviews associated with the pull request.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `author` (String): Filter by author of the review.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `states` ([PullRequestReviewState!]): A list of states to filter the reviews.\n\n* `stack` (PullRequestStack): The stack this Pull Request belongs to, or null if it is not part of a stack.\n* `stackEntry` (PullRequestStackEntry): The stack entry for this Pull Request, or null if it is not part of a stack.\n* `state` (PullRequestState!): Identifies the state of the pull request.\n* `statusCheckRollup` (StatusCheckRollup): Check and Status rollup information for the PR's head ref.\n* `suggestedActors` (AssigneeConnection!): A list of suggested actors to assign to this object.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `query` (String): If provided, searches users by login or profile name.\n\n* `suggestedReviewerActors` (SuggestedReviewerActorConnection!): Reviewer actor suggestions based on commit history, past review comments, and integrations.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `query` (String): Search actors with query on user name and login.\n\n* `suggestedReviewers` ([SuggestedReviewer]!): A list of reviewer suggestions based on commit history and past review comments.\n* `timeline` (PullRequestTimelineConnection!): A list of events, comments, commits, etc. associated with the pull request. **Deprecated:** timeline will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `since` (DateTime): Allows filtering timeline events by a since timestamp.\n\n* `timelineItems` (PullRequestTimelineItemsConnection!): A list of events, comments, commits, etc. associated with the pull request.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `itemTypes` ([PullRequestTimelineItemsItemType!]): Filter timeline items by type.\n  * `last` (Int): Returns the last n elements from the list.\n  * `since` (DateTime): Filter timeline items by a since timestamp.\n  * `skip` (Int): Skips the first n elements in the list.\n\n* `title` (String!): Identifies the pull request title.\n* `titleHTML` (HTML!): Identifies the pull request title rendered to HTML.\n* `totalCommentsCount` (Int): Returns a count of how many comments this pull request has received.\n* `updatedAt` (DateTime!): Identifies the date and time when the object was last updated.\n* `url` (URI!): The HTTP URL for this pull request.\n* `userContentEdits` (UserContentEditConnection): A list of edits to this content. _(Pagination: `after`, `before`, `first`, `last`)_\n* `viewerCanApplySuggestion` (Boolean!): Whether or not the viewer can apply suggestion.\n* `viewerCanAssign` (Boolean!): Indicates if the viewer can edit assignees for this object.\n* `viewerCanClose` (Boolean!): Indicates if the object can be closed by the viewer.\n* `viewerCanDeleteHeadRef` (Boolean!): Check if the viewer can restore the deleted head ref.\n* `viewerCanDisableAutoMerge` (Boolean!): Whether or not the viewer can disable auto-merge.\n* `viewerCanEditFiles` (Boolean!): Can the viewer edit files within this pull request.\n* `viewerCanEnableAutoMerge` (Boolean!): Whether or not the viewer can enable auto-merge.\n* `viewerCanLabel` (Boolean!): Indicates if the viewer can edit labels for this object.\n* `viewerCanMergeAsAdmin` (Boolean!): Indicates whether the viewer can bypass branch protections and merge the pull request immediately.\n* `viewerCanReact` (Boolean!): Can user react to this subject.\n* `viewerCanReopen` (Boolean!): Indicates if the object can be reopened by the viewer.\n* `viewerCanSubscribe` (Boolean!): Check if the viewer is able to change their subscription status for the repository.\n* `viewerCanUpdate` (Boolean!): Check if the current viewer can update this object.\n* `viewerCanUpdateBranch` (Boolean!): Whether or not the viewer can update the head ref of this PR, by merging or rebasing the base ref.\nIf the head ref is up to date or unable to be updated by this user, this will return false.\n* `viewerCannotUpdateReasons` ([CommentCannotUpdateReason!]!): Reasons why the current viewer can not update this comment.\n* `viewerDidAuthor` (Boolean!): Did the viewer author this comment.\n* `viewerLatestReview` (PullRequestReview): The latest review given from the viewer.\n* `viewerLatestReviewRequest` (ReviewRequest): The person who has requested the viewer for review on this pull request.\n* `viewerMergeBodyText` (String!): The merge body text for the viewer and method.\n  * `mergeType` (PullRequestMergeMethod): The merge method for the message.\n\n* `viewerMergeHeadlineText` (String!): The merge headline text for the viewer and method.\n  * `mergeType` (PullRequestMergeMethod): The merge method for the message.\n\n* `viewerSubscription` (SubscriptionState): Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.\n\n## PullRequestAllowedMergeMethods - enum\n\nArray of allowed merge methods. Allowed values include merge, squash, and rebase. At least one option must be enabled.\n\n### Values for `PullRequestAllowedMergeMethods`\n\n* `MERGE`: Add all commits from the head branch to the base branch with a merge commit.\n* `REBASE`: Add all commits from the head branch onto the base branch individually.\n* `SQUASH`: Combine all commits from the head branch into a single commit in the base branch.\n\n## PullRequestBranchUpdateMethod - enum\n\nThe possible methods for updating a pull request's head branch with the base branch.\n\n### Values for `PullRequestBranchUpdateMethod`\n\n* `MERGE`: Update branch via merge.\n* `REBASE`: Update branch via rebase.\n\n## PullRequestChangedFile - object\n\nA file changed in a pull request.\n\n### Fields for `PullRequestChangedFile`\n\n* `additions` (Int!): The number of additions to the file.\n* `changeType` (PatchStatus!): How the file was changed in this PullRequest.\n* `deletions` (Int!): The number of deletions to the file.\n* `path` (String!): The path of the file.\n* `viewerViewedState` (FileViewedState!): The state of the file for the viewer.\n\n## PullRequestChangedFileConnection - object\n\nThe connection type for PullRequestChangedFile.\n\n### Fields for `PullRequestChangedFileConnection`\n\n* `edges` ([PullRequestChangedFileEdge]): A list of edges.\n* `nodes` ([PullRequestChangedFile]): A list of nodes.\n* `pageInfo` (PageInfo!): Information to aid in pagination.\n* `totalCount` (Int!): Identifies the total count of items in the connection.\n\n## PullRequestChangedFileEdge - object\n\nAn edge in a connection.\n\n### Fields for `PullRequestChangedFileEdge`\n\n* `cursor` (String!): A cursor for use in pagination.\n* `node` (PullRequestChangedFile): The item at the end of the edge.\n\n## PullRequestCommit - object\n\nRepresents a Git commit part of a pull request.\n\n**Implements:** Node, UniformResourceLocatable\n\n### Fields for `PullRequestCommit`\n\n* `commit` (Commit!): The Git commit object.\n* `id` (ID!): The Node ID of the PullRequestCommit object.\n* `pullRequest` (PullRequest!): The pull request this commit belongs to.\n* `resourcePath` (URI!): The HTTP path for this pull request commit.\n* `url` (URI!): The HTTP URL for this pull request commit.\n\n## PullRequestCommitCommentThread - object\n\nRepresents a commit comment thread part of a pull request.\n\n**Implements:** Node, RepositoryNode\n\n### Fields for `PullRequestCommitCommentThread`\n\n* `comments` (CommitCommentConnection!): The comments that exist in this thread. _(Pagination: `after`, `before`, `first`, `last`)_\n* `commit` (Commit!): The commit the comments were made on.\n* `id` (ID!): The Node ID of the PullRequestCommitCommentThread object.\n* `path` (String): The file the comments were made on.\n* `position` (Int): The position in the diff for the commit that the comment was made on.\n* `pullRequest` (PullRequest!): The pull request this commit comment thread belongs to.\n* `repository` (Repository!): The repository associated with this node.\n\n## PullRequestCommitConnection - object\n\nThe connection type for PullRequestCommit.\n\n### Fields for `PullRequestCommitConnection`\n\n* `edges` ([PullRequestCommitEdge]): A list of edges.\n* `nodes` ([PullRequestCommit]): A list of nodes.\n* `pageInfo` (PageInfo!): Information to aid in pagination.\n* `totalCount` (Int!): Identifies the total count of items in the connection.\n\n## PullRequestCommitEdge - object\n\nAn edge in a connection.\n\n### Fields for `PullRequestCommitEdge`\n\n* `cursor` (String!): A cursor for use in pagination.\n* `node` (PullRequestCommit): The item at the end of the edge.\n\n## PullRequestConnection - object\n\nThe connection type for PullRequest.\n\n### Fields for `PullRequestConnection`\n\n* `edges` ([PullRequestEdge]): A list of edges.\n* `nodes` ([PullRequest]): A list of nodes.\n* `pageInfo` (PageInfo!): Information to aid in pagination.\n* `totalCount` (Int!): Identifies the total count of items in the connection.\n\n## PullRequestContributionsByRepository - object\n\nThis aggregates pull requests opened by a user within one repository.\n\n### Fields for `PullRequestContributionsByRepository`\n\n* `contributions` (CreatedPullRequestContributionConnection!): The pull request contributions.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `orderBy` (ContributionOrder): Ordering options for contributions returned from the connection.\n\n* `repository` (Repository!): The repository in which the pull requests were opened.\n\n## PullRequestCreationCapConfig - object\n\nUsers who are exempt from the pull request creation cap on a repository.\n\n### Fields for `PullRequestCreationCapConfig`\n\n* `bypassedUsers` (UserConnection!): Users who are exempt from the pull request creation cap. _(Pagination: `after`, `before`, `first`, `last`)_\n\n## PullRequestCreationPolicy - enum\n\nThe policy controlling who can create pull requests in a repository.\n\n### Values for `PullRequestCreationPolicy`\n\n* `ALL`: Anyone can create pull requests.\n* `COLLABORATORS_ONLY`: Only collaborators can create pull requests.\n\n## PullRequestEdge - object\n\nAn edge in a connection.\n\n### Fields for `PullRequestEdge`\n\n* `cursor` (String!): A cursor for use in pagination.\n* `node` (PullRequest): The item at the end of the edge.\n\n## PullRequestMergeMethod - enum\n\nRepresents available types of methods to use when merging a pull request.\n\n### Values for `PullRequestMergeMethod`\n\n* `MERGE`: Add all commits from the head branch to the base branch with a merge commit.\n* `REBASE`: Add all commits from the head branch onto the base branch individually.\n* `SQUASH`: Combine all commits from the head branch into a single commit in the base branch.\n\n## PullRequestOrder - input object\n\nWays in which lists of issues can be ordered upon return.\n\n### Input fields for `PullRequestOrder`\n\n* `direction` (OrderDirection!): The direction in which to order pull requests by the specified field.\n* `field` (PullRequestOrderField!): The field in which to order pull requests by.\n\n## PullRequestOrderField - enum\n\nProperties by which pull_requests connections can be ordered.\n\n### Values for `PullRequestOrderField`\n\n* `CREATED_AT`: Order pull_requests by creation time.\n* `UPDATED_AT`: Order pull_requests by update time.\n\n## PullRequestParameters - object\n\nRequire all commits be made to a non-target branch and submitted via a pull request before they can be merged.\n\n### Fields for `PullRequestParameters`\n\n* `allowedMergeMethods` ([PullRequestAllowedMergeMethods!]): Array of allowed merge methods. Allowed values include merge, squash, and\nrebase. At least one option must be enabled.\n* `dismissStaleReviewsOnPush` (Boolean!): New, reviewable commits pushed will dismiss previous pull request review approvals.\n* `dismissalRestriction` (DismissalRestriction): Specify people, teams, or apps allowed to dismiss pull request reviews.\n* `requireCodeOwnerReview` (Boolean!): Require an approving review in pull requests that modify files that have a designated code owner.\n* `requireLastPushApproval` (Boolean!): Whether the most recent reviewable push must be approved by someone other than the person who pushed it.\n* `requiredApprovingReviewCount` (Int!): The number of approving reviews that are required before a pull request can be merged.\n* `requiredReviewThreadResolution` (Boolean!): All conversations on code must be resolved before a pull request can be merged.\n* `requiredReviewers` ([RequiredReviewerConfiguration!]): This field is in beta and subject to change. A collection of reviewers and\nassociated file patterns. Each reviewer has a list of file patterns which\ndetermine the files that reviewer is required to review.\n\n## PullRequestParametersInput - input object\n\nRequire all commits be made to a non-target branch and submitted via a pull request before they can be merged.\n\n### Input fields for `PullRequestParametersInput`\n\n* `allowedMergeMethods` ([PullRequestAllowedMergeMethods!]): Array of allowed merge methods. Allowed values include merge, squash, and\nrebase. At least one option must be enabled.\n* `dismissStaleReviewsOnPush` (Boolean!): New, reviewable commits pushed will dismiss previous pull request review approvals.\n* `dismissalRestriction` (DismissalRestrictionInput): Specify people, teams, or apps allowed to dismiss pull request reviews.\n* `requireCodeOwnerReview` (Boolean!): Require an approving review in pull requests that modify files that have a designated code owner.\n* `requireLastPushApproval` (Boolean!): Whether the most recent reviewable push must be approved by someone other than the person who pushed it.\n* `requiredApprovingReviewCount` (Int!): The number of approving reviews that are required before a pull request can be merged.\n* `requiredReviewThreadResolution` (Boolean!): All conversations on code must be resolved before a pull request can be merged.\n* `requiredReviewers` ([RequiredReviewerConfigurationInput!]): This argument is in beta and subject to change. A collection of reviewers and\nassociated file patterns. Each reviewer has a list of file patterns which\ndetermine the files that reviewer is required to review.\n\n## PullRequestReview - object\n\nA review object for a given pull request.\n\n**Implements:** Comment, Deletable, Minimizable, Node, Reactable, RepositoryNode, Updatable, UpdatableComment\n\n### Fields for `PullRequestReview`\n\n* `author` (Actor): The actor who authored the comment.\n* `authorAssociation` (CommentAuthorAssociation!): Author's association with the subject of the comment.\n* `authorCanPushToRepository` (Boolean!): Indicates whether the author of this review has push access to the repository.\n* `body` (String!): Identifies the pull request review body.\n* `bodyHTML` (HTML!): The body rendered to HTML.\n* `bodyText` (String!): The body of this review rendered as plain text.\n* `comments` (PullRequestReviewCommentConnection!): A list of review comments for the current pull request review. _(Pagination: `after`, `before`, `first`, `last`)_\n* `commit` (Commit): Identifies the commit associated with this pull request review.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `createdViaEmail` (Boolean!): Check if this comment was created via an email reply.\n* `databaseId` (Int): Identifies the primary key from the database. **Deprecated:** databaseId will be removed because it does not support 64-bit signed integer identifiers. Use fullDatabaseId instead. Removal on 2024-07-01 UTC.\n* `editor` (Actor): The actor who edited the comment.\n* `fullDatabaseId` (BigInt): Identifies the primary key from the database as a BigInt.\n* `id` (ID!): The Node ID of the PullRequestReview object.\n* `includesCreatedEdit` (Boolean!): Check if this comment was edited and includes an edit with the creation data.\n* `isMinimized` (Boolean!): Returns whether or not a comment has been minimized.\n* `lastEditedAt` (DateTime): The moment the editor made the last edit.\n* `minimizedReason` (String): Returns why the comment was minimized. One of abuse, off-topic,\noutdated, resolved, duplicate, spam, and low-quality. Note that the\ncase and formatting of these values differs from the inputs to the\nMinimizeComment mutation.\n* `onBehalfOf` (TeamConnection!): A list of teams that this review was made on behalf of. _(Pagination: `after`, `before`, `first`, `last`)_\n* `publishedAt` (DateTime): Identifies when the comment was published at.\n* `pullRequest` (PullRequest!): Identifies the pull request associated with this pull request review.\n* `reactionGroups` ([ReactionGroup!]): A list of reactions grouped by content left on the subject.\n* `reactions` (ReactionConnection!): A list of Reactions left on the Issue.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `content` (ReactionContent): Allows filtering Reactions by emoji.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `orderBy` (ReactionOrder): Allows specifying the order in which reactions are returned.\n\n* `repository` (Repository!): The repository associated with this node.\n* `resourcePath` (URI!): The HTTP path permalink for this PullRequestReview.\n* `state` (PullRequestReviewState!): Identifies the current state of the pull request review.\n* `submittedAt` (DateTime): Identifies when the Pull Request Review was submitted.\n* `updatedAt` (DateTime!): Identifies the date and time when the object was last updated.\n* `url` (URI!): The HTTP URL permalink for this PullRequestReview.\n* `userContentEdits` (UserContentEditConnection): A list of edits to this content. _(Pagination: `after`, `before`, `first`, `last`)_\n* `viewerCanDelete` (Boolean!): Check if the current viewer can delete this object.\n* `viewerCanMinimize` (Boolean!): Check if the current viewer can minimize this object.\n* `viewerCanReact` (Boolean!): Can user react to this subject.\n* `viewerCanUnminimize` (Boolean!): Check if the current viewer can unminimize this object.\n* `viewerCanUpdate` (Boolean!): Check if the current viewer can update this object.\n* `viewerCannotUpdateReasons` ([CommentCannotUpdateReason!]!): Reasons why the current viewer can not update this comment.\n* `viewerDidAuthor` (Boolean!): Did the viewer author this comment.\n\n## PullRequestReviewComment - object\n\nA review comment associated with a given repository pull request.\n\n**Implements:** Comment, Deletable, Minimizable, Node, Reactable, RepositoryNode, Updatable, UpdatableComment\n\n### Fields for `PullRequestReviewComment`\n\n* `author` (Actor): The actor who authored the comment.\n* `authorAssociation` (CommentAuthorAssociation!): Author's association with the subject of the comment.\n* `body` (String!): The comment body of this review comment.\n* `bodyHTML` (HTML!): The body rendered to HTML.\n* `bodyText` (String!): The comment body of this review comment rendered as plain text.\n* `commit` (Commit): Identifies the commit associated with the comment.\n* `createdAt` (DateTime!): Identifies when the comment was created.\n* `createdViaEmail` (Boolean!): Check if this comment was created via an email reply.\n* `databaseId` (Int): Identifies the primary key from the database. **Deprecated:** databaseId will be removed because it does not support 64-bit signed integer identifiers. Use fullDatabaseId instead. Removal on 2024-07-01 UTC.\n* `diffHunk` (String!): The diff hunk to which the comment applies.\n* `draftedAt` (DateTime!): Identifies when the comment was created in a draft state.\n* `editor` (Actor): The actor who edited the comment.\n* `fullDatabaseId` (BigInt): Identifies the primary key from the database as a BigInt.\n* `id` (ID!): The Node ID of the PullRequestReviewComment object.\n* `includesCreatedEdit` (Boolean!): Check if this comment was edited and includes an edit with the creation data.\n* `isMinimized` (Boolean!): Returns whether or not a comment has been minimized.\n* `lastEditedAt` (DateTime): The moment the editor made the last edit.\n* `line` (Int): The end line number on the file to which the comment applies.\n* `minimizedReason` (String): Returns why the comment was minimized. One of abuse, off-topic,\noutdated, resolved, duplicate, spam, and low-quality. Note that the\ncase and formatting of these values differs from the inputs to the\nMinimizeComment mutation.\n* `originalCommit` (Commit): Identifies the original commit associated with the comment.\n* `originalLine` (Int): The end line number on the file to which the comment applied when it was first created.\n* `originalPosition` (Int!): The original line index in the diff to which the comment applies. **Deprecated:** We are phasing out diff-relative positioning for PR comments Removal on 2023-10-01 UTC.\n* `originalStartLine` (Int): The start line number on the file to which the comment applied when it was first created.\n* `outdated` (Boolean!): Identifies when the comment body is outdated.\n* `path` (String!): The path to which the comment applies.\n* `position` (Int): The line index in the diff to which the comment applies. **Deprecated:** We are phasing out diff-relative positioning for PR comments Use the line and startLine fields instead, which are file line numbers instead of diff line numbers Removal on 2023-10-01 UTC.\n* `publishedAt` (DateTime): Identifies when the comment was published at.\n* `pullRequest` (PullRequest!): The pull request associated with this review comment.\n* `pullRequestReview` (PullRequestReview): The pull request review associated with this review comment.\n* `reactionGroups` ([ReactionGroup!]): A list of reactions grouped by content left on the subject.\n* `reactions` (ReactionConnection!): A list of Reactions left on the Issue.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `content` (ReactionContent): Allows filtering Reactions by emoji.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `orderBy` (ReactionOrder): Allows specifying the order in which reactions are returned.\n\n* `replyTo` (PullRequestReviewComment): The comment this is a reply to.\n* `repository` (Repository!): The repository associated with this node.\n* `resourcePath` (URI!): The HTTP path permalink for this review comment.\n* `startLine` (Int): The start line number on the file to which the comment applies.\n* `state` (PullRequestReviewCommentState!): Identifies the state of the comment.\n* `subjectType` (PullRequestReviewThreadSubjectType!): The level at which the comments in the corresponding thread are targeted, can be a diff line or a file.\n* `updatedAt` (DateTime!): Identifies when the comment was last updated.\n* `url` (URI!): The HTTP URL permalink for this review comment.\n* `userContentEdits` (UserContentEditConnection): A list of edits to this content. _(Pagination: `after`, `before`, `first`, `last`)_\n* `viewerCanDelete` (Boolean!): Check if the current viewer can delete this object.\n* `viewerCanMinimize` (Boolean!): Check if the current viewer can minimize this object.\n* `viewerCanReact` (Boolean!): Can user react to this subject.\n* `viewerCanUnminimize` (Boolean!): Check if the current viewer can unminimize this object.\n* `viewerCanUpdate` (Boolean!): Check if the current viewer can update this object.\n* `viewerCannotUpdateReasons` ([CommentCannotUpdateReason!]!): Reasons why the current viewer can not update this comment.\n* `viewerDidAuthor` (Boolean!): Did the viewer author this comment.\n\n## PullRequestReviewCommentConnection - object\n\nThe connection type for PullRequestReviewComment.\n\n### Fields for `PullRequestReviewCommentConnection`\n\n* `edges` ([PullRequestReviewCommentEdge]): A list of edges.\n* `nodes` ([PullRequestReviewComment]): A list of nodes.\n* `pageInfo` (PageInfo!): Information to aid in pagination.\n* `totalCount` (Int!): Identifies the total count of items in the connection.\n\n## PullRequestReviewCommentEdge - object\n\nAn edge in a connection.\n\n### Fields for `PullRequestReviewCommentEdge`\n\n* `cursor` (String!): A cursor for use in pagination.\n* `node` (PullRequestReviewComment): The item at the end of the edge.\n\n## PullRequestReviewCommentState - enum\n\nThe possible states of a pull request review comment.\n\n### Values for `PullRequestReviewCommentState`\n\n* `PENDING`: A comment that is part of a pending review.\n* `SUBMITTED`: A comment that is part of a submitted review.\n\n## PullRequestReviewConnection - object\n\nThe connection type for PullRequestReview.\n\n### Fields for `PullRequestReviewConnection`\n\n* `edges` ([PullRequestReviewEdge]): A list of edges.\n* `nodes` ([PullRequestReview]): A list of nodes.\n* `pageInfo` (PageInfo!): Information to aid in pagination.\n* `totalCount` (Int!): Identifies the total count of items in the connection.\n\n## PullRequestReviewContributionsByRepository - object\n\nThis aggregates pull request reviews made by a user within one repository.\n\n### Fields for `PullRequestReviewContributionsByRepository`\n\n* `contributions` (CreatedPullRequestReviewContributionConnection!): The pull request review contributions.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `orderBy` (ContributionOrder): Ordering options for contributions returned from the connection.\n\n* `repository` (Repository!): The repository in which the pull request reviews were made.\n\n## PullRequestReviewDecision - enum\n\nThe review status of a pull request.\n\n### Values for `PullRequestReviewDecision`\n\n* `APPROVED`: The pull request has received an approving review.\n* `CHANGES_REQUESTED`: Changes have been requested on the pull request.\n* `REVIEW_REQUIRED`: A review is required before the pull request can be merged.\n\n## PullRequestReviewEdge - object\n\nAn edge in a connection.\n\n### Fields for `PullRequestReviewEdge`\n\n* `cursor` (String!): A cursor for use in pagination.\n* `node` (PullRequestReview): The item at the end of the edge.\n\n## PullRequestReviewEvent - enum\n\nThe possible events to perform on a pull request review.\n\n### Values for `PullRequestReviewEvent`\n\n* `APPROVE`: Submit feedback and approve merging these changes.\n* `COMMENT`: Submit general feedback without explicit approval.\n* `DISMISS`: Dismiss review so it now longer effects merging.\n* `REQUEST_CHANGES`: Submit feedback that must be addressed before merging.\n\n## PullRequestReviewState - enum\n\nThe possible states of a pull request review.\n\n### Values for `PullRequestReviewState`\n\n* `APPROVED`: A review allowing the pull request to merge.\n* `CHANGES_REQUESTED`: A review blocking the pull request from merging.\n* `COMMENTED`: An informational review.\n* `DISMISSED`: A review that has been dismissed.\n* `PENDING`: A review that has not yet been submitted.\n\n## PullRequestReviewThread - object\n\nA threaded list of comments for a given pull request.\n\n**Implements:** Node\n\n### Fields for `PullRequestReviewThread`\n\n* `comments` (PullRequestReviewCommentConnection!): A list of pull request comments associated with the thread.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `skip` (Int): Skips the first n elements in the list.\n\n* `diffSide` (DiffSide!): The side of the diff on which this thread was placed.\n* `id` (ID!): The Node ID of the PullRequestReviewThread object.\n* `isCollapsed` (Boolean!): Whether or not the thread has been collapsed (resolved).\n* `isOutdated` (Boolean!): Indicates whether this thread was outdated by newer changes.\n* `isResolved` (Boolean!): Whether this thread has been resolved.\n* `line` (Int): The line in the file to which this thread refers.\n* `originalLine` (Int): The original line in the file to which this thread refers.\n* `originalStartLine` (Int): The original start line in the file to which this thread refers (multi-line only).\n* `path` (String!): Identifies the file path of this thread.\n* `pullRequest` (PullRequest!): Identifies the pull request associated with this thread.\n* `repository` (Repository!): Identifies the repository associated with this thread.\n* `resolvedBy` (User): The user who resolved this thread.\n* `startDiffSide` (DiffSide): The side of the diff that the first line of the thread starts on (multi-line only).\n* `startLine` (Int): The start line in the file to which this thread refers (multi-line only).\n* `subjectType` (PullRequestReviewThreadSubjectType!): The level at which the comments in the corresponding thread are targeted, can be a diff line or a file.\n* `viewerCanReply` (Boolean!): Indicates whether the current viewer can reply to this thread.\n* `viewerCanResolve` (Boolean!): Whether or not the viewer can resolve this thread.\n* `viewerCanUnresolve` (Boolean!): Whether or not the viewer can unresolve this thread.\n\n## PullRequestReviewThreadConnection - object\n\nReview comment threads for a pull request review.\n\n### Fields for `PullRequestReviewThreadConnection`\n\n* `edges` ([PullRequestReviewThreadEdge]): A list of edges.\n* `nodes` ([PullRequestReviewThread]): A list of nodes.\n* `pageInfo` (PageInfo!): Information to aid in pagination.\n* `totalCount` (Int!): Identifies the total count of items in the connection.\n\n## PullRequestReviewThreadEdge - object\n\nAn edge in a connection.\n\n### Fields for `PullRequestReviewThreadEdge`\n\n* `cursor` (String!): A cursor for use in pagination.\n* `node` (PullRequestReviewThread): The item at the end of the edge.\n\n## PullRequestReviewThreadSubjectType - enum\n\nThe possible subject types of a pull request review comment.\n\n### Values for `PullRequestReviewThreadSubjectType`\n\n* `FILE`: A comment that has been made against the file of a pull request.\n* `LINE`: A comment that has been made against the line of a pull request.\n\n## PullRequestRevisionMarker - object\n\nRepresents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.\n\n### Fields for `PullRequestRevisionMarker`\n\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `lastSeenCommit` (Commit!): The last commit the viewer has seen.\n* `pullRequest` (PullRequest!): The pull request to which the marker belongs.\n\n## PullRequestStack - object\n\nA stack of PullRequests.\n\n**Implements:** Node\n\n### Fields for `PullRequestStack`\n\n* `baseRefName` (String!): The branch that the stack's pull requests target.\n* `entries` (PullRequestStackEntryConnection!): The entries in the stack. _(Pagination: `after`, `before`, `first`, `last`)_\n* `id` (ID!): The Node ID of the PullRequestStack object.\n* `number` (Int!): A number uniquely identifying the stack within its repository.\n* `size` (Int!): The total number of pull requests in the stack.\n\n## PullRequestStackEntry - object\n\nA member of a PullRequestStack.\n\n**Implements:** Node\n\n### Fields for `PullRequestStackEntry`\n\n* `id` (ID!): The Node ID of the PullRequestStackEntry object.\n* `position` (Int!): This entry's position in the stack, where 1 is the closest to the base branch, 2 is stacked on top of 1, etc.\n* `pullRequest` (PullRequest): The pull request that occupies this position in the stack.\n* `stack` (PullRequestStack): The stack that this entry is a part of.\n\n## PullRequestStackEntryConnection - object\n\nEntries in a pull request stack.\n\n### Fields for `PullRequestStackEntryConnection`\n\n* `edges` ([PullRequestStackEntryEdge]): A list of edges.\n* `nodes` ([PullRequestStackEntry]): A list of nodes.\n* `pageInfo` (PageInfo!): Information to aid in pagination.\n* `totalCount` (Int!): Identifies the total count of items in the connection.\n\n## PullRequestStackEntryEdge - object\n\nAn edge in a connection.\n\n### Fields for `PullRequestStackEntryEdge`\n\n* `cursor` (String!): A cursor for use in pagination.\n* `node` (PullRequestStackEntry): The item at the end of the edge.\n\n## PullRequestState - enum\n\nThe possible states of a pull request.\n\n### Values for `PullRequestState`\n\n* `CLOSED`: A pull request that has been closed without being merged.\n* `MERGED`: A pull request that has been closed by being merged.\n* `OPEN`: A pull request that is still open.\n\n## PullRequestTemplate - object\n\nA repository pull request template.\n\n### Fields for `PullRequestTemplate`\n\n* `body` (String): The body of the template.\n* `filename` (String): The filename of the template.\n* `repository` (Repository!): The repository the template belongs to.\n\n## PullRequestThread - object\n\nA threaded list of comments for a given pull request.\n\n**Implements:** Node\n\n### Fields for `PullRequestThread`\n\n* `comments` (PullRequestReviewCommentConnection!): A list of pull request comments associated with the thread.\n  * `after` (String): Returns the elements in the list that come after the specified cursor.\n  * `before` (String): Returns the elements in the list that come before the specified cursor.\n  * `first` (Int): Returns the first n elements from the list.\n  * `last` (Int): Returns the last n elements from the list.\n  * `skip` (Int): Skips the first n elements in the list.\n\n* `diffSide` (DiffSide!): The side of the diff on which this thread was placed.\n* `id` (ID!): The Node ID of the PullRequestThread object.\n* `isCollapsed` (Boolean!): Whether or not the thread has been collapsed (resolved).\n* `isOutdated` (Boolean!): Indicates whether this thread was outdated by newer changes.\n* `isResolved` (Boolean!): Whether this thread has been resolved.\n* `line` (Int): The line in the file to which this thread refers.\n* `path` (String!): Identifies the file path of this thread.\n* `pullRequest` (PullRequest!): Identifies the pull request associated with this thread.\n* `repository` (Repository!): Identifies the repository associated with this thread.\n* `resolvedBy` (User): The user who resolved this thread.\n* `startDiffSide` (DiffSide): The side of the diff that the first line of the thread starts on (multi-line only).\n* `startLine` (Int): The line of the first file diff in the thread.\n* `subjectType` (PullRequestReviewThreadSubjectType!): The level at which the comments in the corresponding thread are targeted, can be a diff line or a file.\n* `viewerCanReply` (Boolean!): Indicates whether the current viewer can reply to this thread.\n* `viewerCanResolve` (Boolean!): Whether or not the viewer can resolve this thread.\n* `viewerCanUnresolve` (Boolean!): Whether or not the viewer can unresolve this thread.\n\n## PullRequestTimelineConnection - object\n\nThe connection type for PullRequestTimelineItem.\n\n### Fields for `PullRequestTimelineConnection`\n\n* `edges` ([PullRequestTimelineItemEdge]): A list of edges.\n* `nodes` ([PullRequestTimelineItem]): A list of nodes.\n* `pageInfo` (PageInfo!): Information to aid in pagination.\n* `totalCount` (Int!): Identifies the total count of items in the connection.\n\n## PullRequestTimelineItem - union\n\nAn item in a pull request timeline.\n\n### Possible types for `PullRequestTimelineItem`\n\n* AssignedEvent\n* BaseRefDeletedEvent\n* BaseRefForcePushedEvent\n* ClosedEvent\n* Commit\n* CommitCommentThread\n* CrossReferencedEvent\n* DemilestonedEvent\n* DeployedEvent\n* DeploymentEnvironmentChangedEvent\n* HeadRefDeletedEvent\n* HeadRefForcePushedEvent\n* HeadRefRestoredEvent\n* IssueComment\n* LabeledEvent\n* LockedEvent\n* MergedEvent\n* MilestonedEvent\n* PullRequestReview\n* PullRequestReviewComment\n* PullRequestReviewThread\n* ReferencedEvent\n* RenamedTitleEvent\n* ReopenedEvent\n* ReviewDismissedEvent\n* ReviewRequestRemovedEvent\n* ReviewRequestedEvent\n* SubscribedEvent\n* UnassignedEvent\n* UnlabeledEvent\n* UnlockedEvent\n* UnsubscribedEvent\n* UserBlockedEvent\n\n## PullRequestTimelineItemEdge - object\n\nAn edge in a connection.\n\n### Fields for `PullRequestTimelineItemEdge`\n\n* `cursor` (String!): A cursor for use in pagination.\n* `node` (PullRequestTimelineItem): The item at the end of the edge.\n\n## PullRequestTimelineItems - union\n\nAn item in a pull request timeline.\n\n### Possible types for `PullRequestTimelineItems`\n\n* AddedToMergeQueueEvent\n* AddedToProjectEvent\n* AddedToProjectV2Event\n* AssignedEvent\n* AutoMergeDisabledEvent\n* AutoMergeEnabledEvent\n* AutoRebaseEnabledEvent\n* AutoSquashEnabledEvent\n* AutomaticBaseChangeFailedEvent\n* AutomaticBaseChangeSucceededEvent\n* BaseRefChangedEvent\n* BaseRefDeletedEvent\n* BaseRefForcePushedEvent\n* BlockedByAddedEvent\n* BlockedByRemovedEvent\n* BlockingAddedEvent\n* BlockingRemovedEvent\n* ClosedEvent\n* CommentDeletedEvent\n* ConnectedEvent\n* ConvertToDraftEvent\n* ConvertedFromDraftEvent\n* ConvertedNoteToIssueEvent\n* ConvertedToDiscussionEvent\n* CrossReferencedEvent\n* DemilestonedEvent\n* DeployedEvent\n* DeploymentEnvironmentChangedEvent\n* DisconnectedEvent\n* HeadRefDeletedEvent\n* HeadRefForcePushedEvent\n* HeadRefRestoredEvent\n* IssueComment\n* IssueCommentPinnedEvent\n* IssueCommentUnpinnedEvent\n* IssueFieldAddedEvent\n* IssueFieldChangedEvent\n* IssueFieldRemovedEvent\n* IssueTypeAddedEvent\n* IssueTypeChangedEvent\n* IssueTypeRemovedEvent\n* LabeledEvent\n* LockedEvent\n* MarkedAsDuplicateEvent\n* MentionedEvent\n* MergedEvent\n* MilestonedEvent\n* MovedColumnsInProjectEvent\n* ParentIssueAddedEvent\n* ParentIssueRemovedEvent\n* PinnedEvent\n* ProjectV2ItemStatusChangedEvent\n* PullRequestCommit\n* PullRequestCommitCommentThread\n* PullRequestReview\n* PullRequestReviewThread\n* PullRequestRevisionMarker\n* ReadyForReviewEvent\n* ReferencedEvent\n* RemovedFromMergeQueueEvent\n* RemovedFromProjectEvent\n* RemovedFromProjectV2Event\n* RenamedTitleEvent\n* ReopenedEvent\n* ReviewDismissedEvent\n* ReviewRequestRemovedEvent\n* ReviewRequestedEvent\n* SubIssueAddedEvent\n* SubIssueRemovedEvent\n* SubscribedEvent\n* TransferredEvent\n* UnassignedEvent\n* UnlabeledEvent\n* UnlockedEvent\n* UnmarkedAsDuplicateEvent\n* UnpinnedEvent\n* UnsubscribedEvent\n* UserBlockedEvent\n\n## PullRequestTimelineItemsConnection - object\n\nThe connection type for PullRequestTimelineItems.\n\n### Fields for `PullRequestTimelineItemsConnection`\n\n* `edges` ([PullRequestTimelineItemsEdge]): A list of edges.\n* `filteredCount` (Int!): Identifies the count of items after applying before and after filters.\n* `nodes` ([PullRequestTimelineItems]): A list of nodes.\n* `pageCount` (Int!): Identifies the count of items after applying before/after filters and first/last/skip slicing.\n* `pageInfo` (PageInfo!): Information to aid in pagination.\n* `totalCount` (Int!): Identifies the total count of items in the connection.\n* `updatedAt` (DateTime!): Identifies the date and time when the timeline was last updated.\n\n## PullRequestTimelineItemsEdge - object\n\nAn edge in a connection.\n\n### Fields for `PullRequestTimelineItemsEdge`\n\n* `cursor` (String!): A cursor for use in pagination.\n* `node` (PullRequestTimelineItems): The item at the end of the edge.\n\n## PullRequestTimelineItemsItemType - enum\n\nThe possible item types found in a timeline.\n\n### Values for `PullRequestTimelineItemsItemType`\n\n* `ADDED_TO_MERGE_QUEUE_EVENT`: Represents anadded_to_merge_queueevent on a given pull request.\n* `ADDED_TO_PROJECT_EVENT`: Represents aadded_to_projectevent on a given issue or pull request.\n* `ADDED_TO_PROJECT_V2_EVENT`: Represents aadded_to_project_v2event on a given issue or pull request.\n* `ARCHIVED_EVENT`: Represents anarchivedevent on a given pull request.\n* `ASSIGNED_EVENT`: Represents anassignedevent on any assignable object.\n* `AUTOMATIC_BASE_CHANGE_FAILED_EVENT`: Represents aautomatic_base_change_failedevent on a given pull request.\n* `AUTOMATIC_BASE_CHANGE_SUCCEEDED_EVENT`: Represents aautomatic_base_change_succeededevent on a given pull request.\n* `AUTO_MERGE_DISABLED_EVENT`: Represents aauto_merge_disabledevent on a given pull request.\n* `AUTO_MERGE_ENABLED_EVENT`: Represents aauto_merge_enabledevent on a given pull request.\n* `AUTO_REBASE_ENABLED_EVENT`: Represents aauto_rebase_enabledevent on a given pull request.\n* `AUTO_SQUASH_ENABLED_EVENT`: Represents aauto_squash_enabledevent on a given pull request.\n* `BASE_REF_CHANGED_EVENT`: Represents abase_ref_changedevent on a given issue or pull request.\n* `BASE_REF_DELETED_EVENT`: Represents abase_ref_deletedevent on a given pull request.\n* `BASE_REF_FORCE_PUSHED_EVENT`: Represents abase_ref_force_pushedevent on a given pull request.\n* `BLOCKED_BY_ADDED_EVENT`: Represents ablocked_by_addedevent on a given issue.\n* `BLOCKED_BY_REMOVED_EVENT`: Represents ablocked_by_removedevent on a given issue.\n* `BLOCKING_ADDED_EVENT`: Represents ablocking_addedevent on a given issue.\n* `BLOCKING_REMOVED_EVENT`: Represents ablocking_removedevent on a given issue.\n* `CLOSED_EVENT`: Represents aclosedevent on any Closable.\n* `COMMENT_DELETED_EVENT`: Represents acomment_deletedevent on a given issue or pull request.\n* `CONNECTED_EVENT`: Represents aconnectedevent on a given issue or pull request.\n* `CONVERTED_FROM_DRAFT_EVENT`: Represents aconverted_from_draftevent on a given issue or pull request.\n* `CONVERTED_NOTE_TO_ISSUE_EVENT`: Represents aconverted_note_to_issueevent on a given issue or pull request.\n* `CONVERTED_TO_DISCUSSION_EVENT`: Represents aconverted_to_discussionevent on a given issue.\n* `CONVERT_TO_DRAFT_EVENT`: Represents aconvert_to_draftevent on a given pull request.\n* `CROSS_REFERENCED_EVENT`: Represents a mention made by one issue or pull request to another.\n* `DEMILESTONED_EVENT`: Represents ademilestonedevent on a given issue or pull request.\n* `DEPLOYED_EVENT`: Represents adeployedevent on a given pull request.\n* `DEPLOYMENT_ENVIRONMENT_CHANGED_EVENT`: Represents adeployment_environment_changedevent on a given pull request.\n* `DISCONNECTED_EVENT`: Represents adisconnectedevent on a given issue or pull request.\n* `HEAD_REF_DELETED_EVENT`: Represents ahead_ref_deletedevent on a given pull request.\n* `HEAD_REF_FORCE_PUSHED_EVENT`: Represents ahead_ref_force_pushedevent on a given pull request.\n* `HEAD_REF_RESTORED_EVENT`: Represents ahead_ref_restoredevent on a given pull request.\n* `ISSUE_COMMENT`: Represents a comment on an Issue.\n* `ISSUE_COMMENT_PINNED_EVENT`: Represents aissue_comment_pinnedevent on a given issue.\n* `ISSUE_COMMENT_UNPINNED_EVENT`: Represents aissue_comment_unpinnedevent on a given issue.\n* `ISSUE_FIELD_ADDED_EVENT`: Represents aissue_field_addedevent on a given issue.\n* `ISSUE_FIELD_CHANGED_EVENT`: Represents aissue_field_changedevent on a given issue.\n* `ISSUE_FIELD_REMOVED_EVENT`: Represents aissue_field_removedevent on a given issue.\n* `ISSUE_TYPE_ADDED_EVENT`: Represents aissue_type_addedevent on a given issue.\n* `ISSUE_TYPE_CHANGED_EVENT`: Represents aissue_type_changedevent on a given issue.\n* `ISSUE_TYPE_REMOVED_EVENT`: Represents aissue_type_removedevent on a given issue.\n* `LABELED_EVENT`: Represents alabeledevent on a given issue or pull request.\n* `LOCKED_EVENT`: Represents alockedevent on a given issue or pull request.\n* `MARKED_AS_DUPLICATE_EVENT`: Represents amarked_as_duplicateevent on a given issue or pull request.\n* `MENTIONED_EVENT`: Represents amentionedevent on a given issue or pull request.\n* `MERGED_EVENT`: Represents amergedevent on a given pull request.\n* `MILESTONED_EVENT`: Represents amilestonedevent on a given issue or pull request.\n* `MOVED_COLUMNS_IN_PROJECT_EVENT`: Represents amoved_columns_in_projectevent on a given issue or pull request.\n* `PARENT_ISSUE_ADDED_EVENT`: Represents aparent_issue_addedevent on a given issue.\n* `PARENT_ISSUE_REMOVED_EVENT`: Represents aparent_issue_removedevent on a given issue.\n* `PINNED_EVENT`: Represents apinnedevent on a given issue or pull request.\n* `PROJECT_V2_ITEM_STATUS_CHANGED_EVENT`: Represents aproject_v2_item_status_changedevent on a given issue or pull request.\n* `PULL_REQUEST_COMMIT`: Represents a Git commit part of a pull request.\n* `PULL_REQUEST_COMMIT_COMMENT_THREAD`: Represents a commit comment thread part of a pull request.\n* `PULL_REQUEST_REVIEW`: A review object for a given pull request.\n* `PULL_REQUEST_REVIEW_THREAD`: A threaded list of comments for a given pull request.\n* `PULL_REQUEST_REVISION_MARKER`: Represents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.\n* `READY_FOR_REVIEW_EVENT`: Represents aready_for_reviewevent on a given pull request.\n* `REFERENCED_EVENT`: Represents areferencedevent on a given ReferencedSubject.\n* `REMOVED_FROM_MERGE_QUEUE_EVENT`: Represents aremoved_from_merge_queueevent on a given pull request.\n* `REMOVED_FROM_PROJECT_EVENT`: Represents aremoved_from_projectevent on a given issue or pull request.\n* `REMOVED_FROM_PROJECT_V2_EVENT`: Represents aremoved_from_project_v2event on a given issue or pull request.\n* `RENAMED_TITLE_EVENT`: Represents arenamedevent on a given issue or pull request.\n* `REOPENED_EVENT`: Represents areopenedevent on any Closable.\n* `REVIEW_DISMISSED_EVENT`: Represents areview_dismissedevent on a given issue or pull request.\n* `REVIEW_REQUESTED_EVENT`: Represents anreview_requestedevent on a given pull request.\n* `REVIEW_REQUEST_REMOVED_EVENT`: Represents anreview_request_removedevent on a given pull request.\n* `SUBSCRIBED_EVENT`: Represents asubscribedevent on a given Subscribable.\n* `SUB_ISSUE_ADDED_EVENT`: Represents asub_issue_addedevent on a given issue.\n* `SUB_ISSUE_REMOVED_EVENT`: Represents asub_issue_removedevent on a given issue.\n* `TRANSFERRED_EVENT`: Represents atransferredevent on a given issue or pull request.\n* `UNARCHIVED_EVENT`: Represents anunarchivedevent on a given pull request.\n* `UNASSIGNED_EVENT`: Represents anunassignedevent on any assignable object.\n* `UNLABELED_EVENT`: Represents anunlabeledevent on a given issue or pull request.\n* `UNLOCKED_EVENT`: Represents anunlockedevent on a given issue or pull request.\n* `UNMARKED_AS_DUPLICATE_EVENT`: Represents anunmarked_as_duplicateevent on a given issue or pull request.\n* `UNPINNED_EVENT`: Represents anunpinnedevent on a given issue or pull request.\n* `UNSUBSCRIBED_EVENT`: Represents anunsubscribedevent on a given Subscribable.\n* `USER_BLOCKED_EVENT`: Represents auser_blockedevent on a given user.\n\n## PullRequestUpdateState - enum\n\nThe possible target states when updating a pull request.\n\n### Values for `PullRequestUpdateState`\n\n* `CLOSED`: A pull request that has been closed without being merged.\n* `OPEN`: A pull request that is still open.\n\n## ReadyForReviewEvent - object\n\nRepresents aready_for_reviewevent on a given pull request.\n\n**Implements:** Node, UniformResourceLocatable\n\n### Fields for `ReadyForReviewEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `id` (ID!): The Node ID of the ReadyForReviewEvent object.\n* `pullRequest` (PullRequest!): PullRequest referenced by event.\n* `resourcePath` (URI!): The HTTP path for this ready for review event.\n* `url` (URI!): The HTTP URL for this ready for review event.\n\n## RemovedFromMergeQueueEvent - object\n\nRepresents aremoved_from_merge_queueevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `RemovedFromMergeQueueEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `beforeCommit` (Commit): Identifies the before commit SHA for theremoved_from_merge_queueevent.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `enqueuer` (User): The user who removed this Pull Request from the merge queue.\n* `id` (ID!): The Node ID of the RemovedFromMergeQueueEvent object.\n* `mergeQueue` (MergeQueue): The merge queue where this pull request was removed from.\n* `pullRequest` (PullRequest): PullRequest referenced by event.\n* `reason` (String): The reason this pull request was removed from the queue.\n\n## removePullRequestCreationCapBypassUsers - mutation\n\nRemove users from the pull request creation cap bypass list. Only users with\nmaintainer permissions can manage the bypass list.\n\n### Input fields for `removePullRequestCreationCapBypassUsers`\n\n* `input` (RemovePullRequestCreationCapBypassUsersInput!): \n\n### Return fields for `removePullRequestCreationCapBypassUsers`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `repository` (Repository): The repository with the updated bypass list.\n\n## RemovePullRequestCreationCapBypassUsersInput - input object\n\nAutogenerated input type of RemovePullRequestCreationCapBypassUsers.\n\n### Input fields for `RemovePullRequestCreationCapBypassUsersInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `repositoryId` (ID!): The Node ID of the repository.\n* `userIds` ([ID!]!): The Node IDs of the users to remove from the bypass list.\n\n## reopenPullRequest - mutation\n\nReopen a pull request.\n\n### Input fields for `reopenPullRequest`\n\n* `input` (ReopenPullRequestInput!): \n\n### Return fields for `reopenPullRequest`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The pull request that was reopened.\n\n## ReopenPullRequestInput - input object\n\nAutogenerated input type of ReopenPullRequest.\n\n### Input fields for `ReopenPullRequestInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestId` (ID!): ID of the pull request to be reopened.\n\n## RequestedReviewer - union\n\nTypes that can be requested reviewers.\n\n### Possible types for `RequestedReviewer`\n\n* Bot\n* EnterpriseTeam\n* Mannequin\n* Team\n* User\n\n## RequestedReviewerConnection - object\n\nThe connection type for RequestedReviewer.\n\n### Fields for `RequestedReviewerConnection`\n\n* `edges` ([RequestedReviewerEdge]): A list of edges.\n* `nodes` ([RequestedReviewer]): A list of nodes.\n* `pageInfo` (PageInfo!): Information to aid in pagination.\n* `totalCount` (Int!): Identifies the total count of items in the connection.\n\n## RequestedReviewerEdge - object\n\nAn edge in a connection.\n\n### Fields for `RequestedReviewerEdge`\n\n* `cursor` (String!): A cursor for use in pagination.\n* `node` (RequestedReviewer): The item at the end of the edge.\n\n## requestReviews - mutation\n\nSet review requests on a pull request.\n\n### Input fields for `requestReviews`\n\n* `input` (RequestReviewsInput!): \n\n### Return fields for `requestReviews`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The pull request that is getting requests.\n* `requestedReviewersEdge` (UserEdge): The edge from the pull request to the requested reviewers.\n\n## requestReviewsByLogin - mutation\n\nSet review requests on a pull request using login strings instead of IDs.\n\n### Input fields for `requestReviewsByLogin`\n\n* `input` (RequestReviewsByLoginInput!): \n\n### Return fields for `requestReviewsByLogin`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The pull request that is getting requests.\n* `requestedReviewersEdge` (UserEdge): The edge from the pull request to the requested reviewers.\n\n## RequestReviewsByLoginInput - input object\n\nAutogenerated input type of RequestReviewsByLogin.\n\n### Input fields for `RequestReviewsByLoginInput`\n\n* `botLogins` ([String!]): The logins of the bots to request reviews from, including the [bot] suffix (e.g., 'copilot-pull-request-reviewer[bot]').\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestId` (ID!): The Node ID of the pull request to modify.\n* `teamSlugs` ([String!]): The slugs of the teams to request reviews from (format: 'org/team-slug').\n* `union` (Boolean): Add users to the set rather than replace.\n* `userLogins` ([String!]): The login strings of the users to request reviews from.\n\n## RequestReviewsInput - input object\n\nAutogenerated input type of RequestReviews.\n\n### Input fields for `RequestReviewsInput`\n\n* `botIds` ([ID!]): The Node IDs of the bot to request.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestId` (ID!): The Node ID of the pull request to modify.\n* `teamIds` ([ID!]): The Node IDs of the team to request.\n* `union` (Boolean): Add users to the set rather than replace.\n* `userIds` ([ID!]): The Node IDs of the user to request.\n\n## RequirableByPullRequest - interface\n\nRepresents a type that can be required by a pull request for merging.\n\n### Fields for `RequirableByPullRequest`\n\n* `isRequired` (Boolean!): Whether this is required to pass before merging for a specific pull request.\n  * `pullRequestId` (ID): The id of the pull request this is required for.\n  * `pullRequestNumber` (Int): The number of the pull request this is required for.\n\n### Implemented by\n\n* CheckRun\n* StatusContext\n\n## RequiredReviewerConfiguration - object\n\nA reviewing team, and file patterns describing which files they must approve changes to.\n\n### Fields for `RequiredReviewerConfiguration`\n\n* `filePatterns` ([String!]!): Array of file patterns. Pull requests which change matching files must be\napproved by the specified team. File patterns use fnmatch syntax.\n* `minimumApprovals` (Int!): Minimum number of approvals required from the specified team. If set to zero,\nthe team will be added to the pull request but approval is optional.\n* `reviewerId` (ID!): Node ID of the team which must review changes to matching files.\n\n## RequiredReviewerConfigurationInput - input object\n\nA reviewing team, and file patterns describing which files they must approve changes to.\n\n### Input fields for `RequiredReviewerConfigurationInput`\n\n* `filePatterns` ([String!]!): Array of file patterns. Pull requests which change matching files must be\napproved by the specified team. File patterns use fnmatch syntax.\n* `minimumApprovals` (Int!): Minimum number of approvals required from the specified team. If set to zero,\nthe team will be added to the pull request but approval is optional.\n* `reviewerId` (ID!): Node ID of the team which must review changes to matching files.\n\n## resolveReviewThread - mutation\n\nMarks a review thread as resolved.\n\n### Input fields for `resolveReviewThread`\n\n* `input` (ResolveReviewThreadInput!): \n\n### Return fields for `resolveReviewThread`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `thread` (PullRequestReviewThread): The thread to resolve.\n\n## ResolveReviewThreadInput - input object\n\nAutogenerated input type of ResolveReviewThread.\n\n### Input fields for `ResolveReviewThreadInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `threadId` (ID!): The ID of the thread to resolve.\n\n## revertPullRequest - mutation\n\nCreate a pull request that reverts the changes from a merged pull request.\n\n### Input fields for `revertPullRequest`\n\n* `input` (RevertPullRequestInput!): \n\n### Return fields for `revertPullRequest`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The pull request that was reverted.\n* `revertPullRequest` (PullRequest): The new pull request that reverts the input pull request.\n\n## RevertPullRequestInput - input object\n\nAutogenerated input type of RevertPullRequest.\n\n### Input fields for `RevertPullRequestInput`\n\n* `body` (String): The description of the revert pull request.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `draft` (Boolean): Indicates whether the revert pull request should be a draft.\n* `pullRequestId` (ID!): The ID of the pull request to revert.\n* `title` (String): The title of the revert pull request.\n\n## ReviewDismissedEvent - object\n\nRepresents areview_dismissedevent on a given issue or pull request.\n\n**Implements:** Node, UniformResourceLocatable\n\n### Fields for `ReviewDismissedEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `databaseId` (Int): Identifies the primary key from the database.\n* `dismissalMessage` (String): Identifies the optional message associated with thereview_dismissedevent.\n* `dismissalMessageHTML` (String): Identifies the optional message associated with the event, rendered to HTML.\n* `id` (ID!): The Node ID of the ReviewDismissedEvent object.\n* `previousReviewState` (PullRequestReviewState!): Identifies the previous state of the review with thereview_dismissedevent.\n* `pullRequest` (PullRequest!): PullRequest referenced by event.\n* `pullRequestCommit` (PullRequestCommit): Identifies the commit which caused the review to become stale.\n* `resourcePath` (URI!): The HTTP path for this review dismissed event.\n* `review` (PullRequestReview): Identifies the review associated with thereview_dismissedevent.\n* `url` (URI!): The HTTP URL for this review dismissed event.\n\n## ReviewRequest - object\n\nA request for a user to review a pull request.\n\n**Implements:** Node\n\n### Fields for `ReviewRequest`\n\n* `asCodeOwner` (Boolean!): Whether this request was created for a code owner.\n* `databaseId` (Int): Identifies the primary key from the database.\n* `id` (ID!): The Node ID of the ReviewRequest object.\n* `pullRequest` (PullRequest!): Identifies the pull request associated with this review request.\n* `requestedReviewer` (RequestedReviewer): The reviewer that is requested.\n\n## ReviewRequestConnection - object\n\nThe connection type for ReviewRequest.\n\n### Fields for `ReviewRequestConnection`\n\n* `edges` ([ReviewRequestEdge]): A list of edges.\n* `nodes` ([ReviewRequest]): A list of nodes.\n* `pageInfo` (PageInfo!): Information to aid in pagination.\n* `totalCount` (Int!): Identifies the total count of items in the connection.\n\n## ReviewRequestedEvent - object\n\nRepresents anreview_requestedevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `ReviewRequestedEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `id` (ID!): The Node ID of the ReviewRequestedEvent object.\n* `pullRequest` (PullRequest!): PullRequest referenced by event.\n* `requestedReviewer` (RequestedReviewer): Identifies the reviewer whose review was requested.\n\n## ReviewRequestEdge - object\n\nAn edge in a connection.\n\n### Fields for `ReviewRequestEdge`\n\n* `cursor` (String!): A cursor for use in pagination.\n* `node` (ReviewRequest): The item at the end of the edge.\n\n## ReviewRequestRemovedEvent - object\n\nRepresents anreview_request_removedevent on a given pull request.\n\n**Implements:** Node\n\n### Fields for `ReviewRequestRemovedEvent`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `createdAt` (DateTime!): Identifies the date and time when the object was created.\n* `id` (ID!): The Node ID of the ReviewRequestRemovedEvent object.\n* `pullRequest` (PullRequest!): PullRequest referenced by event.\n* `requestedReviewer` (RequestedReviewer): Identifies the reviewer whose review request was removed.\n\n## ReviewStatusHovercardContext - object\n\nA hovercard context with a message describing the current code review state of the pull\nrequest.\n\n**Implements:** HovercardContext\n\n### Fields for `ReviewStatusHovercardContext`\n\n* `message` (String!): A string describing this context.\n* `octicon` (String!): An octicon to accompany this context.\n* `reviewDecision` (PullRequestReviewDecision): The current status of the pull request with respect to code review.\n\n## submitPullRequestReview - mutation\n\nSubmits a pending pull request review.\n\n### Input fields for `submitPullRequestReview`\n\n* `input` (SubmitPullRequestReviewInput!): \n\n### Return fields for `submitPullRequestReview`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestReview` (PullRequestReview): The submitted pull request review.\n\n## SubmitPullRequestReviewInput - input object\n\nAutogenerated input type of SubmitPullRequestReview.\n\n### Input fields for `SubmitPullRequestReviewInput`\n\n* `body` (String): The text field to set on the Pull Request Review.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `event` (PullRequestReviewEvent!): The event to send to the Pull Request Review.\n* `pullRequestId` (ID): The Pull Request ID to submit any pending reviews.\n* `pullRequestReviewId` (ID): The Pull Request Review ID to submit.\n\n## SuggestedReviewer - object\n\nA suggestion to review a pull request based on a user's commit history and review comments.\n\n### Fields for `SuggestedReviewer`\n\n* `isAuthor` (Boolean!): Is this suggestion based on past commits?.\n* `isCommenter` (Boolean!): Is this suggestion based on past review comments?.\n* `reviewer` (User!): Identifies the user suggested to review the pull request.\n\n## SuggestedReviewerActor - object\n\nA suggestion to review a pull request based on an actor's commit history, review comments, and integrations.\n\n### Fields for `SuggestedReviewerActor`\n\n* `isAuthor` (Boolean!): Is this suggestion based on past commits?.\n* `isCommenter` (Boolean!): Is this suggestion based on past review comments?.\n* `reviewer` (Actor!): Identifies the actor suggested to review the pull request.\n\n## SuggestedReviewerActorConnection - object\n\nA suggestion to review a pull request based on an actor's commit history, review comments, and integrations.\n\n### Fields for `SuggestedReviewerActorConnection`\n\n* `edges` ([SuggestedReviewerActorEdge]): A list of edges.\n* `nodes` ([SuggestedReviewerActor]): A list of nodes.\n* `pageInfo` (PageInfo!): Information to aid in pagination.\n* `totalCount` (Int!): Identifies the total count of items in the connection.\n\n## SuggestedReviewerActorEdge - object\n\nAn edge in a connection.\n\n### Fields for `SuggestedReviewerActorEdge`\n\n* `cursor` (String!): A cursor for use in pagination.\n* `node` (SuggestedReviewerActor): The item at the end of the edge.\n\n## unarchivePullRequest - mutation\n\nUnarchive a pull request. Removes the archived flag from the pull request.\nDoes not automatically reopen or unlock the pull request. Only repository\nadmins can unarchive pull requests.\n\n### Input fields for `unarchivePullRequest`\n\n* `input` (UnarchivePullRequestInput!): \n\n### Return fields for `unarchivePullRequest`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The pull request that was unarchived.\n\n## UnarchivePullRequestInput - input object\n\nAutogenerated input type of UnarchivePullRequest.\n\n### Input fields for `UnarchivePullRequestInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestId` (ID!): The Node ID of the pull request to unarchive.\n\n## unmarkFileAsViewed - mutation\n\nUnmark a pull request file as viewed.\n\n### Input fields for `unmarkFileAsViewed`\n\n* `input` (UnmarkFileAsViewedInput!): \n\n### Return fields for `unmarkFileAsViewed`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The updated pull request.\n\n## UnmarkFileAsViewedInput - input object\n\nAutogenerated input type of UnmarkFileAsViewed.\n\n### Input fields for `UnmarkFileAsViewedInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `path` (String!): The path of the file to mark as unviewed.\n* `pullRequestId` (ID!): The Node ID of the pull request.\n\n## unresolveReviewThread - mutation\n\nMarks a review thread as unresolved.\n\n### Input fields for `unresolveReviewThread`\n\n* `input` (UnresolveReviewThreadInput!): \n\n### Return fields for `unresolveReviewThread`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `thread` (PullRequestReviewThread): The thread to resolve.\n\n## UnresolveReviewThreadInput - input object\n\nAutogenerated input type of UnresolveReviewThread.\n\n### Input fields for `UnresolveReviewThreadInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `threadId` (ID!): The ID of the thread to unresolve.\n\n## updatePullRequest - mutation\n\nUpdate a pull request.\n\n### Input fields for `updatePullRequest`\n\n* `input` (UpdatePullRequestInput!): \n\n### Return fields for `updatePullRequest`\n\n* `actor` (Actor): Identifies the actor who performed the event.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The updated pull request.\n\n## updatePullRequestBranch - mutation\n\nMerge or Rebase HEAD from upstream branch into pull request branch.\n\n### Input fields for `updatePullRequestBranch`\n\n* `input` (UpdatePullRequestBranchInput!): \n\n### Return fields for `updatePullRequestBranch`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequest` (PullRequest): The updated pull request.\n\n## UpdatePullRequestBranchInput - input object\n\nAutogenerated input type of UpdatePullRequestBranch.\n\n### Input fields for `UpdatePullRequestBranchInput`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `expectedHeadOid` (GitObjectID): The head ref oid for the upstream branch.\n* `pullRequestId` (ID!): The Node ID of the pull request.\n* `updateMethod` (PullRequestBranchUpdateMethod): The update branch method to use. If omitted, defaults to 'MERGE'.\n\n## UpdatePullRequestInput - input object\n\nAutogenerated input type of UpdatePullRequest.\n\n### Input fields for `UpdatePullRequestInput`\n\n* `assigneeIds` ([ID!]): An array of Node IDs of users for this pull request.\n* `baseRefName` (String): The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.\n* `body` (String): The contents of the pull request.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `labelIds` ([ID!]): An array of Node IDs of labels for this pull request.\n* `maintainerCanModify` (Boolean): Indicates whether maintainers can modify the pull request.\n* `milestoneId` (ID): The Node ID of the milestone for this pull request.\n* `projectIds` ([ID!]): An array of Node IDs for projects associated with this pull request.\n* `pullRequestId` (ID!): The Node ID of the pull request.\n* `state` (PullRequestUpdateState): The target state of the pull request.\n* `title` (String): The title of the pull request.\n\n## updatePullRequestReview - mutation\n\nUpdates the body of a pull request review.\n\n### Input fields for `updatePullRequestReview`\n\n* `input` (UpdatePullRequestReviewInput!): \n\n### Return fields for `updatePullRequestReview`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestReview` (PullRequestReview): The updated pull request review.\n\n## updatePullRequestReviewComment - mutation\n\nUpdates a pull request review comment.\n\n### Input fields for `updatePullRequestReviewComment`\n\n* `input` (UpdatePullRequestReviewCommentInput!): \n\n### Return fields for `updatePullRequestReviewComment`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestReviewComment` (PullRequestReviewComment): The updated comment.\n\n## UpdatePullRequestReviewCommentInput - input object\n\nAutogenerated input type of UpdatePullRequestReviewComment.\n\n### Input fields for `UpdatePullRequestReviewCommentInput`\n\n* `body` (String!): The text of the comment.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestReviewCommentId` (ID!): The Node ID of the comment to modify.\n\n## UpdatePullRequestReviewInput - input object\n\nAutogenerated input type of UpdatePullRequestReview.\n\n### Input fields for `UpdatePullRequestReviewInput`\n\n* `body` (String!): The contents of the pull request review body.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `pullRequestReviewId` (ID!): The Node ID of the pull request review to modify.\n\n## updateTeamReviewAssignment - mutation\n\nUpdates team review assignment.\n\n### Input fields for `updateTeamReviewAssignment`\n\n* `input` (UpdateTeamReviewAssignmentInput!): \n\n### Return fields for `updateTeamReviewAssignment`\n\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `team` (Team): The team that was modified.\n\n## UpdateTeamReviewAssignmentInput - input object\n\nAutogenerated input type of UpdateTeamReviewAssignment.\n\n### Input fields for `UpdateTeamReviewAssignmentInput`\n\n* `algorithm` (TeamReviewAssignmentAlgorithm): The algorithm to use for review assignment.\n* `clientMutationId` (String): A unique identifier for the client performing the mutation.\n* `countMembersAlreadyRequested` (Boolean): Count any members whose review has already been requested against the required number of members assigned to review.\n* `enabled` (Boolean!): Turn on or off review assignment.\n* `excludedTeamMemberIds` ([ID!]): An array of team member IDs to exclude.\n* `id` (ID!): The Node ID of the team to update review assignments of.\n* `includeChildTeamMembers` (Boolean): Include the members of any child teams when assigning.\n* `notifyTeam` (Boolean): Notify the entire team of the PR if it is delegated.\n* `removeTeamRequest` (Boolean): Remove the team review request when assigning.\n* `teamMemberCount` (Int): The number of team members to assign."}