From 1c2219c057839ba9b92644931d8d0923caf3cf97 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Wed, 15 Dec 2021 15:16:04 -0500 Subject: [PATCH 1/6] remove old debugging in staging-deploy-pr (#23701) --- .github/workflows/staging-deploy-pr.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/staging-deploy-pr.yml b/.github/workflows/staging-deploy-pr.yml index ed5de66b12..f4c35296e7 100644 --- a/.github/workflows/staging-deploy-pr.yml +++ b/.github/workflows/staging-deploy-pr.yml @@ -36,14 +36,6 @@ env: BUILD_ACTIONS_RUN_LOG: https://github.com/${{ github.repository }}/actions/runs/${{ github.event.workflow_run.id }} jobs: - debug: - runs-on: ubuntu-latest - steps: - - name: Dump full context for debugging - env: - GITHUB_CONTEXT: ${{ toJSON(github) }} - run: echo "$GITHUB_CONTEXT" - pr-metadata: # This is needed because the workflow we depend on # (see on.workflow_run.workflows) might be running from pushes on From 26f4a568d452dcfcf4c2d411f5dcf9f8773aba82 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Wed, 15 Dec 2021 15:21:15 -0500 Subject: [PATCH 2/6] spot-content-flaws middleware (#23451) * spot-content-flaws * now with 100% more color * use kleur instead --- middleware/index.js | 2 ++ middleware/spot-content-flaws.js | 32 ++++++++++++++++++++++ package-lock.json | 47 ++++++++++++++++---------------- package.json | 1 + 4 files changed, 59 insertions(+), 23 deletions(-) create mode 100644 middleware/spot-content-flaws.js diff --git a/middleware/index.js b/middleware/index.js index 9eed341a14..60919f6bdb 100644 --- a/middleware/index.js +++ b/middleware/index.js @@ -34,6 +34,7 @@ import helpToDocs from './redirects/help-to-docs.js' import languageCodeRedirects from './redirects/language-code-redirects.js' import handleRedirects from './redirects/handle-redirects.js' import findPage from './find-page.js' +import spotContentFlaws from './spot-content-flaws.js' import blockRobots from './block-robots.js' import archivedEnterpriseVersionsAssets from './archived-enterprise-versions-assets.js' import events from './events.js' @@ -173,6 +174,7 @@ export default function (app) { // *** Config and context for rendering *** app.use(asyncMiddleware(instrument(findPage, './find-page'))) // Must come before archived-enterprise-versions, breadcrumbs, featured-links, products, render-page + app.use(asyncMiddleware(instrument(spotContentFlaws, './spot-content-flaws'))) // Must come after findPage app.use(instrument(blockRobots, './block-robots')) // Check for a dropped connection before proceeding diff --git a/middleware/spot-content-flaws.js b/middleware/spot-content-flaws.js new file mode 100644 index 0000000000..d05ce4c1f6 --- /dev/null +++ b/middleware/spot-content-flaws.js @@ -0,0 +1,32 @@ +// This middleware, exclusively in 'development' tries to spot flaws in +// the content you're actively viewing. +// The hopeful assumption is that if you're actively viewing this +// page on localhost, you're actively working on its content. + +import path from 'path' + +import kleur from 'kleur' + +export default async function spotContentFlaws(req, res, next) { + const { page } = req.context + if (process.env.NODE_ENV === 'development' && page) { + const trailingSlashRedirects = (page.redirect_from || []).filter( + (uri) => uri.endsWith('/') && uri.startsWith('/') + ) + if (trailingSlashRedirects.length > 0) { + console.warn( + `The page ${kleur.bold(path.relative(process.cwd(), page.fullPath))} has ${ + trailingSlashRedirects.length + } redirect_from entries that have a trailing slash\n ${kleur.yellow( + trailingSlashRedirects.join('\n ') + )}` + ) + console.log( + "If you're actively working on this page, consider", + kleur.bold('deleting all trailing slashes in redirect_from.\n') + ) + } + } + + return next() +} diff --git a/package-lock.json b/package-lock.json index 4c024ca009..2e8f3b9a75 100644 --- a/package-lock.json +++ b/package-lock.json @@ -47,6 +47,7 @@ "imurmurhash": "^0.1.4", "js-cookie": "^3.0.1", "js-yaml": "^4.1.0", + "kleur": "4.1.4", "liquidjs": "^9.22.1", "lodash": "^4.17.21", "lodash-es": "^4.17.21", @@ -13371,10 +13372,9 @@ } }, "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "devOptional": true, + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz", + "integrity": "sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==", "engines": { "node": ">=6" } @@ -17831,6 +17831,15 @@ "node": ">= 6" } }, + "node_modules/prompts/node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "devOptional": true, + "engines": { + "node": ">=6" + } + }, "node_modules/prop-types": { "version": "15.7.2", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", @@ -22247,14 +22256,6 @@ "node": ">=8" } }, - "node_modules/uvu/node_modules/kleur": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz", - "integrity": "sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==", - "engines": { - "node": ">=6" - } - }, "node_modules/v8-compile-cache": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", @@ -33493,10 +33494,9 @@ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" }, "kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "devOptional": true + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz", + "integrity": "sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==" }, "language-subtag-registry": { "version": "0.3.21", @@ -36869,6 +36869,14 @@ "requires": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" + }, + "dependencies": { + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "devOptional": true + } } }, "prop-types": { @@ -40276,13 +40284,6 @@ "kleur": "^4.0.3", "sade": "^1.7.3", "totalist": "^2.0.0" - }, - "dependencies": { - "kleur": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz", - "integrity": "sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==" - } } }, "v8-compile-cache": { diff --git a/package.json b/package.json index c9c70c070e..c1960a4dcf 100644 --- a/package.json +++ b/package.json @@ -49,6 +49,7 @@ "imurmurhash": "^0.1.4", "js-cookie": "^3.0.1", "js-yaml": "^4.1.0", + "kleur": "4.1.4", "liquidjs": "^9.22.1", "lodash": "^4.17.21", "lodash-es": "^4.17.21", From 45f1a41e790007bac0d4052413dcfd8bedb1f54d Mon Sep 17 00:00:00 2001 From: Rachael Sewell Date: Wed, 15 Dec 2021 12:28:39 -0800 Subject: [PATCH 3/6] prerender graphql mutations page (#23757) --- content/graphql/reference/mutations.md | 5 +- lib/graphql/static/prerendered-mutations.json | 7198 +++++++++++++++++ middleware/contextualizers/graphql.js | 4 + middleware/render-page.js | 10 + script/graphql/update-files.js | 23 +- script/graphql/utils/prerender-graphql.js | 30 + 6 files changed, 7263 insertions(+), 7 deletions(-) create mode 100644 lib/graphql/static/prerendered-mutations.json create mode 100644 script/graphql/utils/prerender-graphql.js diff --git a/content/graphql/reference/mutations.md b/content/graphql/reference/mutations.md index 83e7d46707..73f190ae96 100644 --- a/content/graphql/reference/mutations.md +++ b/content/graphql/reference/mutations.md @@ -18,6 +18,5 @@ Every GraphQL schema has a root type for both queries and mutations. The [mutati For more information, see "[About mutations](/graphql/guides/forming-calls-with-graphql#about-mutations)." -{% for item in graphql.schemaForCurrentVersion.mutations %} - {% include graphql-mutation %} -{% endfor %} + + diff --git a/lib/graphql/static/prerendered-mutations.json b/lib/graphql/static/prerendered-mutations.json new file mode 100644 index 0000000000..f2313edd33 --- /dev/null +++ b/lib/graphql/static/prerendered-mutations.json @@ -0,0 +1,7198 @@ +{ + "dotcom": { + "html": "
\n
\n

\n \n \nacceptEnterpriseAdministratorInvitation

\n

Accepts a pending invitation for a user to become an administrator of an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

invitation (EnterpriseAdministratorInvitation)

The invitation that was accepted.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of accepting an administrator invitation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nacceptTopicSuggestion

\n

Applies a suggested topic to the repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

topic (Topic)

The accepted topic.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddAssigneesToAssignable

\n

Adds assignees to an assignable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignable (Assignable)

The item that was assigned.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddComment

\n

Adds a comment to an Issue or Pull Request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

commentEdge (IssueCommentEdge)

The edge from the subject's comment connection.

\n\n\n\n\n\n\n\n

subject (Node)

The subject.

\n\n\n\n\n\n\n\n

timelineEdge (IssueTimelineItemEdge)

The edge from the subject's timeline connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddDiscussionComment

\n

Adds a comment to a Discussion, possibly as a reply to another comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The newly created discussion comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddEnterpriseSupportEntitlement

\n

Adds a support entitlement to an enterprise member.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of adding the support entitlement.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddLabelsToLabelable

\n

Adds labels to a labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The item that was labeled.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectCard

\n

Adds a card to a ProjectColumn. Either contentId or note must be provided but not both.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cardEdge (ProjectCardEdge)

The edge from the ProjectColumn's card connection.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectColumn (ProjectColumn)

The ProjectColumn.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectColumn

\n

Adds a column to a Project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

columnEdge (ProjectColumnEdge)

The edge from the project's column connection.

\n\n\n\n\n\n\n\n

project (Project)

The project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectNextItem

\n

Adds an existing item (Issue or PullRequest) to a Project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectNextItem (ProjectNextItem)

The item added to the project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReview

\n

Adds a review to a Pull Request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The newly created pull request review.

\n\n\n\n\n\n\n\n

reviewEdge (PullRequestReviewEdge)

The edge from the pull request's review connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReviewComment

\n

Adds a comment to a review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (PullRequestReviewComment)

The newly created comment.

\n\n\n\n\n\n\n\n

commentEdge (PullRequestReviewCommentEdge)

The edge from the review's comment connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReviewThread

\n

Adds a new thread to a pending Pull Request Review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The newly created thread.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddReaction

\n

Adds a reaction to a subject.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

reaction (Reaction)

The reaction object.

\n\n\n\n\n\n\n\n

subject (Reactable)

The reactable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddStar

\n

Adds a star to a Starrable.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

starrable (Starrable)

The starrable.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddUpvote

\n

Add an upvote to a discussion or discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subject (Votable)

The votable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddVerifiableDomain

\n

Adds a verifiable domain to an owning account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

domain (VerifiableDomain)

The verifiable domain that was added.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \napproveDeployments

\n

Approve all pending deployments under one or more environments.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployments ([Deployment!])

The affected deployments.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \napproveVerifiableDomain

\n

Approve a verifiable domain for notification delivery.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

domain (VerifiableDomain)

The verifiable domain that was approved.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \narchiveRepository

\n

Marks a repository as archived.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that was marked as archived.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncancelEnterpriseAdminInvitation

\n

Cancels a pending invitation for an administrator to join an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

invitation (EnterpriseAdministratorInvitation)

The invitation that was canceled.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of canceling an administrator invitation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncancelSponsorship

\n

Cancel an active sponsorship.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

sponsorsTier (SponsorsTier)

The tier that was being used at the time of cancellation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nchangeUserStatus

\n

Update your status on GitHub.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

status (UserStatus)

Your updated status.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nclearLabelsFromLabelable

\n

Clears all labels from a labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The item that was unlabeled.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloneProject

\n

Creates a new project by cloning configuration from an existing project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

jobStatusId (String)

The id of the JobStatus for populating cloned fields.

\n\n\n\n\n\n\n\n

project (Project)

The new cloned project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloneTemplateRepository

\n

Create a new repository with the same files and directory structure as a template repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The new repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloseIssue

\n

Close an issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was closed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nclosePullRequest

\n

Close a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was closed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nconvertProjectCardNoteToIssue

\n

Convert a project note card to one associated with a newly created issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

The updated ProjectCard.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nconvertPullRequestToDraft

\n

Converts a pull request to draft.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is now a draft.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateBranchProtectionRule

\n

Create a new branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

The newly created BranchProtectionRule.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCheckRun

\n

Create a check run.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkRun (CheckRun)

The newly created check run.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCheckSuite

\n

Create a check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkSuite (CheckSuite)

The newly created check suite.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCommitOnBranch

\n

Appends a commit to the given branch as the authenticated user.

\n

This mutation creates a commit whose parent is the HEAD of the provided\nbranch and also updates that branch to point to the new commit.\nIt can be thought of as similar to git commit.

\n

Locating a Branch

\n

Commits are appended to a branch of type Ref.\nThis must refer to a git branch (i.e. the fully qualified path must\nbegin with refs/heads/, although including this prefix is optional.

\n

Callers may specify the branch to commit to either by its global node\nID or by passing both of repositoryNameWithOwner and refName. For\nmore details see the documentation for CommittableBranch.

\n

Describing Changes

\n

fileChanges are specified as a FilesChanges object describing\nFileAdditions and FileDeletions.

\n

Please see the documentation for FileChanges for more information on\nhow to use this argument to describe any set of file changes.

\n

Authorship

\n

Similar to the web commit interface, this mutation does not support\nspecifying the author or committer of the commit and will not add\nsupport for this in the future.

\n

A commit created by a successful execution of this mutation will be\nauthored by the owner of the credential which authenticates the API\nrequest. The committer will be identical to that of commits authored\nusing the web interface.

\n

If you need full control over author and committer information, please\nuse the Git Database REST API instead.

\n

Commit Signing

\n

Commits made using this mutation are automatically signed by GitHub if\nsupported and will be marked as verified in the user interface.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

commit (Commit)

The new commit.

\n\n\n\n\n\n\n\n

ref (Ref)

The ref which has been updated to point to the new commit.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDeployment

\n

Creates a new deployment event.

\n
\n\n
\n \n
\n

Preview notice

\n

createDeployment is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

autoMerged (Boolean)

True if the default branch has been auto-merged into the deployment ref.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployment (Deployment)

The new deployment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDeploymentStatus

\n

Create a deployment status.

\n
\n\n
\n \n
\n

Preview notice

\n

createDeploymentStatus is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deploymentStatus (DeploymentStatus)

The new deployment status.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDiscussion

\n

Create a discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that was just created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateEnterpriseOrganization

\n

Creates an organization as part of an enterprise account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise that owns the created organization.

\n\n\n\n\n\n\n\n

organization (Organization)

The organization that was created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateEnvironment

\n

Creates an environment or simply returns it if already exists.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

environment (Environment)

The new or existing environment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateIpAllowListEntry

\n

Creates a new IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateIssue

\n

Creates a new issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The new issue.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateLabel

\n

Creates a new label.

\n
\n\n
\n \n
\n

Preview notice

\n

createLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

label (Label)

The new label.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateProject

\n

Creates a new project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The new project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreatePullRequest

\n

Create a new pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The new pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateRef

\n

Create a new Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ref (Ref)

The newly created ref.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateRepository

\n

Create a new repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The new repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateSponsorship

\n

Start a new sponsorship of a maintainer in GitHub Sponsors, or reactivate a past sponsorship.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

sponsorship (Sponsorship)

The sponsorship that was started.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateTeamDiscussion

\n

Creates a new team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussion (TeamDiscussion)

The new discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateTeamDiscussionComment

\n

Creates a new team discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussionComment (TeamDiscussionComment)

The new comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeclineTopicSuggestion

\n

Rejects a suggested topic for the repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

topic (Topic)

The declined topic.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteBranchProtectionRule

\n

Delete a branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDeployment

\n

Deletes a deployment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDiscussion

\n

Delete a discussion and all of its replies.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that was just deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDiscussionComment

\n

Delete a discussion comment. If it has replies, wipe it instead.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The discussion comment that was just deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteEnvironment

\n

Deletes an environment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIpAllowListEntry

\n

Deletes an IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIssue

\n

Deletes an Issue object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository the issue belonged to.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIssueComment

\n

Deletes an IssueComment object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteLabel

\n

Deletes a label.

\n
\n\n
\n \n
\n

Preview notice

\n

deleteLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePackageVersion

\n

Delete a package version.

\n
\n\n
\n \n
\n

Preview notice

\n

deletePackageVersion is available under the Access to package version deletion preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

success (Boolean)

Whether or not the operation succeeded.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProject

\n

Deletes a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (ProjectOwner)

The repository or organization the project was removed from.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectCard

\n

Deletes a project card.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

column (ProjectColumn)

The column the deleted card was in.

\n\n\n\n\n\n\n\n

deletedCardId (ID)

The deleted card ID.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectColumn

\n

Deletes a project column.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deletedColumnId (ID)

The deleted column ID.

\n\n\n\n\n\n\n\n

project (Project)

The project the deleted column was in.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectNextItem

\n

Deletes an item from a Project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deletedItemId (ID)

The ID of the deleted item.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePullRequestReview

\n

Deletes a pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The deleted pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePullRequestReviewComment

\n

Deletes a pull request review comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The pull request review the deleted comment belonged to.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteRef

\n

Delete a Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteTeamDiscussion

\n

Deletes a team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteTeamDiscussionComment

\n

Deletes a team discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteVerifiableDomain

\n

Deletes a verifiable domain.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (VerifiableDomainOwner)

The owning account from which the domain was deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndisablePullRequestAutoMerge

\n

Disable auto merge on the given pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request auto merge was disabled on.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndismissPullRequestReview

\n

Dismisses an approved or rejected pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The dismissed pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndismissRepositoryVulnerabilityAlert

\n

Dismisses the Dependabot alert.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repositoryVulnerabilityAlert (RepositoryVulnerabilityAlert)

The Dependabot alert that was dismissed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nenablePullRequestAutoMerge

\n

Enable the default auto-merge on a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request auto-merge was enabled on.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nfollowUser

\n

Follow a user.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that was followed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nimportProject

\n

Creates a new project by importing columns and a list of issues/PRs.

\n
\n\n
\n \n
\n

Preview notice

\n

importProject is available under the Import project preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The new Project!.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ninviteEnterpriseAdmin

\n

Invite someone to become an administrator of the enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

invitation (EnterpriseAdministratorInvitation)

The created enterprise administrator invitation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nlinkRepositoryToProject

\n

Creates a repository link for a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The linked Project.

\n\n\n\n\n\n\n\n

repository (Repository)

The linked Repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nlockLockable

\n

Lock a lockable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

lockedRecord (Lockable)

The item that was locked.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkDiscussionCommentAsAnswer

\n

Mark a discussion comment as the chosen answer for discussions in an answerable category.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that includes the chosen comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkFileAsViewed

\n

Mark a pull request file as viewed.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkPullRequestReadyForReview

\n

Marks a pull request ready for review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is ready for review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmergeBranch

\n

Merge a head into a branch.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

mergeCommit (Commit)

The resulting merge Commit.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmergePullRequest

\n

Merge a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was merged.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nminimizeComment

\n

Minimizes a comment on an Issue, Commit, Pull Request, or Gist.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

minimizedComment (Minimizable)

The comment that was minimized.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmoveProjectCard

\n

Moves a project card to another place.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cardEdge (ProjectCardEdge)

The new edge of the moved card.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmoveProjectColumn

\n

Moves a project column to another place.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

columnEdge (ProjectColumnEdge)

The new edge of the moved column.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \npinIssue

\n

Pin an issue to a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was pinned.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nregenerateEnterpriseIdentityProviderRecoveryCodes

\n

Regenerates the identity provider recovery codes for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

identityProvider (EnterpriseIdentityProvider)

The identity provider for the enterprise.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nregenerateVerifiableDomainToken

\n

Regenerates a verifiable domain's verification token.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

verificationToken (String)

The verification token that was generated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrejectDeployments

\n

Reject all pending deployments under one or more environments.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployments ([Deployment!])

The affected deployments.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveAssigneesFromAssignable

\n

Removes assignees from an assignable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignable (Assignable)

The item that was unassigned.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveEnterpriseAdmin

\n

Removes an administrator from the enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

admin (User)

The user who was removed as an administrator.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of removing an administrator.

\n\n\n\n\n\n\n\n

viewer (User)

The viewer performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveEnterpriseIdentityProvider

\n

Removes the identity provider from an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

identityProvider (EnterpriseIdentityProvider)

The identity provider that was removed from the enterprise.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveEnterpriseOrganization

\n

Removes an organization from the enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n

organization (Organization)

The organization that was removed from the enterprise.

\n\n\n\n\n\n\n\n

viewer (User)

The viewer performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveEnterpriseSupportEntitlement

\n

Removes a support entitlement from an enterprise member.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of removing the support entitlement.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveLabelsFromLabelable

\n

Removes labels from a Labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The Labelable the labels were removed from.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveOutsideCollaborator

\n

Removes outside collaborator from all repositories in an organization.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

removedUser (User)

The user that was removed as an outside collaborator.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveReaction

\n

Removes a reaction from a subject.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

reaction (Reaction)

The reaction object.

\n\n\n\n\n\n\n\n

subject (Reactable)

The reactable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveStar

\n

Removes a star from a Starrable.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

starrable (Starrable)

The starrable.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveUpvote

\n

Remove an upvote to a discussion or discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subject (Votable)

The votable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nreopenIssue

\n

Reopen a issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was opened.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nreopenPullRequest

\n

Reopen a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was reopened.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrequestReviews

\n

Set review requests on a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is getting requests.

\n\n\n\n\n\n\n\n

requestedReviewersEdge (UserEdge)

The edge from the pull request to the requested reviewers.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrerequestCheckSuite

\n

Rerequests an existing check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkSuite (CheckSuite)

The requested check suite.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nresolveReviewThread

\n

Marks a review thread as resolved.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The thread to resolve.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsetEnterpriseIdentityProvider

\n

Creates or updates the identity provider for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

identityProvider (EnterpriseIdentityProvider)

The identity provider for the enterprise.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsetOrganizationInteractionLimit

\n

Set an organization level interaction limit for an organization's public repositories.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

organization (Organization)

The organization that the interaction limit was set for.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsetRepositoryInteractionLimit

\n

Sets an interaction limit setting for a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that the interaction limit was set for.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsetUserInteractionLimit

\n

Set a user level interaction limit for an user's public repositories.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that the interaction limit was set for.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsubmitPullRequestReview

\n

Submits a pending pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The submitted pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ntransferIssue

\n

Transfer an issue to a different repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was transferred.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunarchiveRepository

\n

Unarchives a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that was unarchived.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunfollowUser

\n

Unfollow a user.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that was unfollowed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunlinkRepositoryFromProject

\n

Deletes a repository link from a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The linked Project.

\n\n\n\n\n\n\n\n

repository (Repository)

The linked Repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunlockLockable

\n

Unlock a lockable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

unlockedRecord (Lockable)

The item that was unlocked.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkDiscussionCommentAsAnswer

\n

Unmark a discussion comment as the chosen answer for discussions in an answerable category.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that includes the comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkFileAsViewed

\n

Unmark a pull request file as viewed.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkIssueAsDuplicate

\n

Unmark an issue as a duplicate of another issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

duplicate (IssueOrPullRequest)

The issue or pull request that was marked as a duplicate.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunminimizeComment

\n

Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

unminimizedComment (Minimizable)

The comment that was unminimized.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunpinIssue

\n

Unpin a pinned issue from a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was unpinned.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunresolveReviewThread

\n

Marks a review thread as unresolved.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The thread to resolve.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateBranchProtectionRule

\n

Create a new branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

The newly created BranchProtectionRule.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateCheckRun

\n

Update a check run.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkRun (CheckRun)

The updated check run.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateCheckSuitePreferences

\n

Modifies the settings of an existing check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateDiscussion

\n

Update a discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The modified discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateDiscussionComment

\n

Update the contents of a comment on a Discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The modified discussion comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseAdministratorRole

\n

Updates the role of an enterprise administrator.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of changing the administrator's role.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseAllowPrivateRepositoryForkingSetting

\n

Sets whether private repository forks are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated allow private repository forking setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the allow private repository forking setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseDefaultRepositoryPermissionSetting

\n

Sets the base repository permission for organizations in an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated base repository permission setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the base repository permission setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanChangeRepositoryVisibilitySetting

\n

Sets whether organization members with admin permissions on a repository can change repository visibility.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can change repository visibility setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can change repository visibility setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanCreateRepositoriesSetting

\n

Sets the members can create repositories setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can create repositories setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can create repositories setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanDeleteIssuesSetting

\n

Sets the members can delete issues setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can delete issues setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can delete issues setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanDeleteRepositoriesSetting

\n

Sets the members can delete repositories setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can delete repositories setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can delete repositories setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanInviteCollaboratorsSetting

\n

Sets whether members can invite collaborators are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can invite collaborators setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can invite collaborators setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanMakePurchasesSetting

\n

Sets whether or not an organization admin can make purchases.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can make purchases setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can make purchases setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanUpdateProtectedBranchesSetting

\n

Sets the members can update protected branches setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can update protected branches setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can update protected branches setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanViewDependencyInsightsSetting

\n

Sets the members can view dependency insights for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can view dependency insights setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can view dependency insights setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseOrganizationProjectsSetting

\n

Sets whether organization projects are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated organization projects setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the organization projects setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseProfile

\n

Updates an enterprise's profile.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseRepositoryProjectsSetting

\n

Sets whether repository projects are enabled for a enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated repository projects setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the repository projects setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseTeamDiscussionsSetting

\n

Sets whether team discussions are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated team discussions setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the team discussions setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseTwoFactorAuthenticationRequiredSetting

\n

Sets whether two factor authentication is required for all users in an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated two factor authentication required setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the two factor authentication required setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnvironment

\n

Updates an environment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

environment (Environment)

The updated environment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListEnabledSetting

\n

Sets whether an IP allow list is enabled on an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (IpAllowListOwner)

The IP allow list owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListEntry

\n

Updates an IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListForInstalledAppsEnabledSetting

\n

Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (IpAllowListOwner)

The IP allow list owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIssue

\n

Updates an Issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIssueComment

\n

Updates an IssueComment object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issueComment (IssueComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateLabel

\n

Updates an existing label.

\n
\n\n
\n \n
\n

Preview notice

\n

updateLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

label (Label)

The updated label.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateNotificationRestrictionSetting

\n

Update the setting to restrict notifications to only verified or approved domains available to an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (VerifiableDomainOwner)

The owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateOrganizationAllowPrivateRepositoryForkingSetting

\n

Sets whether private repository forks are enabled for an organization.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the allow private repository forking setting.

\n\n\n\n\n\n\n\n

organization (Organization)

The organization with the updated allow private repository forking setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProject

\n

Updates an existing project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The updated project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectCard

\n

Updates an existing project card.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

The updated ProjectCard.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectColumn

\n

Updates an existing project column.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectColumn (ProjectColumn)

The updated project column.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectNextItemField

\n

Updates a field of an item from a Project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectNextItem (ProjectNextItem)

The updated item.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequest

\n

Update a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestBranch

\n

Merge HEAD from upstream branch into pull request branch.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestReview

\n

Updates the body of a pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The updated pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestReviewComment

\n

Updates a pull request review comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReviewComment (PullRequestReviewComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRef

\n

Update a Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ref (Ref)

The updated Ref.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRefs

\n

Creates, updates and/or deletes multiple refs in a repository.

\n

This mutation takes a list of RefUpdates and performs these updates\non the repository. All updates are performed atomically, meaning that\nif one of them is rejected, no other ref will be modified.

\n

RefUpdate.beforeOid specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n0000000000000000000000000000000000000000 can be used to verify that\nthe references should not exist.

\n

RefUpdate.afterOid specifies the value that the given reference\nwill point to after performing all updates. A value of\n0000000000000000000000000000000000000000 can be used to delete a\nreference.

\n

If RefUpdate.force is set to true, a non-fast-forward updates\nfor the given reference will be allowed.

\n
\n\n
\n \n
\n

Preview notice

\n

updateRefs is available under the Update refs preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRepository

\n

Update information about a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateSponsorshipPreferences

\n

Change visibility of your sponsorship and opt in or out of email updates from the maintainer.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

sponsorship (Sponsorship)

The sponsorship that was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateSubscription

\n

Updates the state for subscribable subjects.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subscribable (Subscribable)

The input subscribable entity.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamDiscussion

\n

Updates a team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussion (TeamDiscussion)

The updated discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamDiscussionComment

\n

Updates a discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussionComment (TeamDiscussionComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamReviewAssignment

\n

Updates team review assignment.

\n
\n\n
\n \n
\n

Preview notice

\n

updateTeamReviewAssignment is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

team (Team)

The team that was modified.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTopics

\n

Replaces the repository's topics with the given topics.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

invalidTopicNames ([String!])

Names of the provided topics that are not valid.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nverifyVerifiableDomain

\n

Verify that a verifiable domain has the expected DNS record.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

domain (VerifiableDomain)

The verifiable domain that was verified.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n", + "miniToc": [ + { + "contents": "\n acceptEnterpriseAdministratorInvitation", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n acceptTopicSuggestion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addAssigneesToAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addEnterpriseSupportEntitlement", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addLabelsToLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectNextItem", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n archiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cancelEnterpriseAdminInvitation", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cancelSponsorship", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n changeUserStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n clearLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneTemplateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closeIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertProjectCardNoteToIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertPullRequestToDraft", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCommitOnBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeploymentStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createSponsorship", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n declineTopicSuggestion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePackageVersion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectNextItem", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n disablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissRepositoryVulnerabilityAlert", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n enablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n followUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n importProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n inviteEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n linkRepositoryToProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n lockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markPullRequestReadyForReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergeBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n minimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n pinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n regenerateEnterpriseIdentityProviderRecoveryCodes", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n regenerateVerifiableDomainToken", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rejectDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeAssigneesFromAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseIdentityProvider", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseSupportEntitlement", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeOutsideCollaborator", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n requestReviews", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rerequestCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n resolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setEnterpriseIdentityProvider", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setOrganizationInteractionLimit", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setRepositoryInteractionLimit", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setUserInteractionLimit", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n submitPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n transferIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unarchiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unfollowUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlinkRepositoryFromProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkIssueAsDuplicate", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unminimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unpinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unresolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckSuitePreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAdministratorRole", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseDefaultRepositoryPermissionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanCreateRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteIssuesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanInviteCollaboratorsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanMakePurchasesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanViewDependencyInsightsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseOrganizationProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseProfile", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseRepositoryProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTeamDiscussionsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListForInstalledAppsEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateNotificationRestrictionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateOrganizationAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectNextItemField", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRefs", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSponsorshipPreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSubscription", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamReviewAssignment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTopics", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n verifyVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + } + ] + }, + "ghec": { + "html": "
\n
\n

\n \n \nacceptEnterpriseAdministratorInvitation

\n

Accepts a pending invitation for a user to become an administrator of an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

invitation (EnterpriseAdministratorInvitation)

The invitation that was accepted.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of accepting an administrator invitation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nacceptTopicSuggestion

\n

Applies a suggested topic to the repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

topic (Topic)

The accepted topic.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddAssigneesToAssignable

\n

Adds assignees to an assignable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignable (Assignable)

The item that was assigned.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddComment

\n

Adds a comment to an Issue or Pull Request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

commentEdge (IssueCommentEdge)

The edge from the subject's comment connection.

\n\n\n\n\n\n\n\n

subject (Node)

The subject.

\n\n\n\n\n\n\n\n

timelineEdge (IssueTimelineItemEdge)

The edge from the subject's timeline connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddDiscussionComment

\n

Adds a comment to a Discussion, possibly as a reply to another comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The newly created discussion comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddEnterpriseSupportEntitlement

\n

Adds a support entitlement to an enterprise member.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of adding the support entitlement.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddLabelsToLabelable

\n

Adds labels to a labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The item that was labeled.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectCard

\n

Adds a card to a ProjectColumn. Either contentId or note must be provided but not both.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cardEdge (ProjectCardEdge)

The edge from the ProjectColumn's card connection.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectColumn (ProjectColumn)

The ProjectColumn.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectColumn

\n

Adds a column to a Project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

columnEdge (ProjectColumnEdge)

The edge from the project's column connection.

\n\n\n\n\n\n\n\n

project (Project)

The project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectNextItem

\n

Adds an existing item (Issue or PullRequest) to a Project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectNextItem (ProjectNextItem)

The item added to the project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReview

\n

Adds a review to a Pull Request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The newly created pull request review.

\n\n\n\n\n\n\n\n

reviewEdge (PullRequestReviewEdge)

The edge from the pull request's review connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReviewComment

\n

Adds a comment to a review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (PullRequestReviewComment)

The newly created comment.

\n\n\n\n\n\n\n\n

commentEdge (PullRequestReviewCommentEdge)

The edge from the review's comment connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReviewThread

\n

Adds a new thread to a pending Pull Request Review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The newly created thread.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddReaction

\n

Adds a reaction to a subject.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

reaction (Reaction)

The reaction object.

\n\n\n\n\n\n\n\n

subject (Reactable)

The reactable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddStar

\n

Adds a star to a Starrable.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

starrable (Starrable)

The starrable.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddUpvote

\n

Add an upvote to a discussion or discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subject (Votable)

The votable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddVerifiableDomain

\n

Adds a verifiable domain to an owning account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

domain (VerifiableDomain)

The verifiable domain that was added.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \napproveDeployments

\n

Approve all pending deployments under one or more environments.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployments ([Deployment!])

The affected deployments.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \napproveVerifiableDomain

\n

Approve a verifiable domain for notification delivery.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

domain (VerifiableDomain)

The verifiable domain that was approved.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \narchiveRepository

\n

Marks a repository as archived.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that was marked as archived.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncancelEnterpriseAdminInvitation

\n

Cancels a pending invitation for an administrator to join an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

invitation (EnterpriseAdministratorInvitation)

The invitation that was canceled.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of canceling an administrator invitation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncancelSponsorship

\n

Cancel an active sponsorship.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

sponsorsTier (SponsorsTier)

The tier that was being used at the time of cancellation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nchangeUserStatus

\n

Update your status on GitHub.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

status (UserStatus)

Your updated status.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nclearLabelsFromLabelable

\n

Clears all labels from a labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The item that was unlabeled.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloneProject

\n

Creates a new project by cloning configuration from an existing project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

jobStatusId (String)

The id of the JobStatus for populating cloned fields.

\n\n\n\n\n\n\n\n

project (Project)

The new cloned project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloneTemplateRepository

\n

Create a new repository with the same files and directory structure as a template repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The new repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloseIssue

\n

Close an issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was closed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nclosePullRequest

\n

Close a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was closed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nconvertProjectCardNoteToIssue

\n

Convert a project note card to one associated with a newly created issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

The updated ProjectCard.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nconvertPullRequestToDraft

\n

Converts a pull request to draft.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is now a draft.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateBranchProtectionRule

\n

Create a new branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

The newly created BranchProtectionRule.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCheckRun

\n

Create a check run.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkRun (CheckRun)

The newly created check run.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCheckSuite

\n

Create a check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkSuite (CheckSuite)

The newly created check suite.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCommitOnBranch

\n

Appends a commit to the given branch as the authenticated user.

\n

This mutation creates a commit whose parent is the HEAD of the provided\nbranch and also updates that branch to point to the new commit.\nIt can be thought of as similar to git commit.

\n

Locating a Branch

\n

Commits are appended to a branch of type Ref.\nThis must refer to a git branch (i.e. the fully qualified path must\nbegin with refs/heads/, although including this prefix is optional.

\n

Callers may specify the branch to commit to either by its global node\nID or by passing both of repositoryNameWithOwner and refName. For\nmore details see the documentation for CommittableBranch.

\n

Describing Changes

\n

fileChanges are specified as a FilesChanges object describing\nFileAdditions and FileDeletions.

\n

Please see the documentation for FileChanges for more information on\nhow to use this argument to describe any set of file changes.

\n

Authorship

\n

Similar to the web commit interface, this mutation does not support\nspecifying the author or committer of the commit and will not add\nsupport for this in the future.

\n

A commit created by a successful execution of this mutation will be\nauthored by the owner of the credential which authenticates the API\nrequest. The committer will be identical to that of commits authored\nusing the web interface.

\n

If you need full control over author and committer information, please\nuse the Git Database REST API instead.

\n

Commit Signing

\n

Commits made using this mutation are automatically signed by GitHub if\nsupported and will be marked as verified in the user interface.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

commit (Commit)

The new commit.

\n\n\n\n\n\n\n\n

ref (Ref)

The ref which has been updated to point to the new commit.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDeployment

\n

Creates a new deployment event.

\n
\n\n
\n \n
\n

Preview notice

\n

createDeployment is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

autoMerged (Boolean)

True if the default branch has been auto-merged into the deployment ref.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployment (Deployment)

The new deployment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDeploymentStatus

\n

Create a deployment status.

\n
\n\n
\n \n
\n

Preview notice

\n

createDeploymentStatus is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deploymentStatus (DeploymentStatus)

The new deployment status.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDiscussion

\n

Create a discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that was just created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateEnterpriseOrganization

\n

Creates an organization as part of an enterprise account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise that owns the created organization.

\n\n\n\n\n\n\n\n

organization (Organization)

The organization that was created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateEnvironment

\n

Creates an environment or simply returns it if already exists.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

environment (Environment)

The new or existing environment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateIpAllowListEntry

\n

Creates a new IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateIssue

\n

Creates a new issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The new issue.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateLabel

\n

Creates a new label.

\n
\n\n
\n \n
\n

Preview notice

\n

createLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

label (Label)

The new label.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateProject

\n

Creates a new project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The new project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreatePullRequest

\n

Create a new pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The new pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateRef

\n

Create a new Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ref (Ref)

The newly created ref.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateRepository

\n

Create a new repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The new repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateSponsorship

\n

Start a new sponsorship of a maintainer in GitHub Sponsors, or reactivate a past sponsorship.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

sponsorship (Sponsorship)

The sponsorship that was started.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateTeamDiscussion

\n

Creates a new team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussion (TeamDiscussion)

The new discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateTeamDiscussionComment

\n

Creates a new team discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussionComment (TeamDiscussionComment)

The new comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeclineTopicSuggestion

\n

Rejects a suggested topic for the repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

topic (Topic)

The declined topic.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteBranchProtectionRule

\n

Delete a branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDeployment

\n

Deletes a deployment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDiscussion

\n

Delete a discussion and all of its replies.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that was just deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDiscussionComment

\n

Delete a discussion comment. If it has replies, wipe it instead.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The discussion comment that was just deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteEnvironment

\n

Deletes an environment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIpAllowListEntry

\n

Deletes an IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIssue

\n

Deletes an Issue object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository the issue belonged to.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIssueComment

\n

Deletes an IssueComment object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteLabel

\n

Deletes a label.

\n
\n\n
\n \n
\n

Preview notice

\n

deleteLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePackageVersion

\n

Delete a package version.

\n
\n\n
\n \n
\n

Preview notice

\n

deletePackageVersion is available under the Access to package version deletion preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

success (Boolean)

Whether or not the operation succeeded.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProject

\n

Deletes a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (ProjectOwner)

The repository or organization the project was removed from.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectCard

\n

Deletes a project card.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

column (ProjectColumn)

The column the deleted card was in.

\n\n\n\n\n\n\n\n

deletedCardId (ID)

The deleted card ID.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectColumn

\n

Deletes a project column.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deletedColumnId (ID)

The deleted column ID.

\n\n\n\n\n\n\n\n

project (Project)

The project the deleted column was in.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectNextItem

\n

Deletes an item from a Project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deletedItemId (ID)

The ID of the deleted item.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePullRequestReview

\n

Deletes a pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The deleted pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePullRequestReviewComment

\n

Deletes a pull request review comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The pull request review the deleted comment belonged to.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteRef

\n

Delete a Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteTeamDiscussion

\n

Deletes a team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteTeamDiscussionComment

\n

Deletes a team discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteVerifiableDomain

\n

Deletes a verifiable domain.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (VerifiableDomainOwner)

The owning account from which the domain was deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndisablePullRequestAutoMerge

\n

Disable auto merge on the given pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request auto merge was disabled on.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndismissPullRequestReview

\n

Dismisses an approved or rejected pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The dismissed pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndismissRepositoryVulnerabilityAlert

\n

Dismisses the Dependabot alert.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repositoryVulnerabilityAlert (RepositoryVulnerabilityAlert)

The Dependabot alert that was dismissed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nenablePullRequestAutoMerge

\n

Enable the default auto-merge on a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request auto-merge was enabled on.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nfollowUser

\n

Follow a user.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that was followed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nimportProject

\n

Creates a new project by importing columns and a list of issues/PRs.

\n
\n\n
\n \n
\n

Preview notice

\n

importProject is available under the Import project preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The new Project!.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ninviteEnterpriseAdmin

\n

Invite someone to become an administrator of the enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

invitation (EnterpriseAdministratorInvitation)

The created enterprise administrator invitation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nlinkRepositoryToProject

\n

Creates a repository link for a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The linked Project.

\n\n\n\n\n\n\n\n

repository (Repository)

The linked Repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nlockLockable

\n

Lock a lockable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

lockedRecord (Lockable)

The item that was locked.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkDiscussionCommentAsAnswer

\n

Mark a discussion comment as the chosen answer for discussions in an answerable category.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that includes the chosen comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkFileAsViewed

\n

Mark a pull request file as viewed.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkPullRequestReadyForReview

\n

Marks a pull request ready for review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is ready for review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmergeBranch

\n

Merge a head into a branch.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

mergeCommit (Commit)

The resulting merge Commit.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmergePullRequest

\n

Merge a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was merged.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nminimizeComment

\n

Minimizes a comment on an Issue, Commit, Pull Request, or Gist.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

minimizedComment (Minimizable)

The comment that was minimized.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmoveProjectCard

\n

Moves a project card to another place.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cardEdge (ProjectCardEdge)

The new edge of the moved card.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmoveProjectColumn

\n

Moves a project column to another place.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

columnEdge (ProjectColumnEdge)

The new edge of the moved column.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \npinIssue

\n

Pin an issue to a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was pinned.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nregenerateEnterpriseIdentityProviderRecoveryCodes

\n

Regenerates the identity provider recovery codes for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

identityProvider (EnterpriseIdentityProvider)

The identity provider for the enterprise.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nregenerateVerifiableDomainToken

\n

Regenerates a verifiable domain's verification token.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

verificationToken (String)

The verification token that was generated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrejectDeployments

\n

Reject all pending deployments under one or more environments.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployments ([Deployment!])

The affected deployments.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveAssigneesFromAssignable

\n

Removes assignees from an assignable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignable (Assignable)

The item that was unassigned.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveEnterpriseAdmin

\n

Removes an administrator from the enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

admin (User)

The user who was removed as an administrator.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of removing an administrator.

\n\n\n\n\n\n\n\n

viewer (User)

The viewer performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveEnterpriseIdentityProvider

\n

Removes the identity provider from an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

identityProvider (EnterpriseIdentityProvider)

The identity provider that was removed from the enterprise.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveEnterpriseOrganization

\n

Removes an organization from the enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n

organization (Organization)

The organization that was removed from the enterprise.

\n\n\n\n\n\n\n\n

viewer (User)

The viewer performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveEnterpriseSupportEntitlement

\n

Removes a support entitlement from an enterprise member.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of removing the support entitlement.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveLabelsFromLabelable

\n

Removes labels from a Labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The Labelable the labels were removed from.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveOutsideCollaborator

\n

Removes outside collaborator from all repositories in an organization.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

removedUser (User)

The user that was removed as an outside collaborator.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveReaction

\n

Removes a reaction from a subject.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

reaction (Reaction)

The reaction object.

\n\n\n\n\n\n\n\n

subject (Reactable)

The reactable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveStar

\n

Removes a star from a Starrable.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

starrable (Starrable)

The starrable.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveUpvote

\n

Remove an upvote to a discussion or discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subject (Votable)

The votable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nreopenIssue

\n

Reopen a issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was opened.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nreopenPullRequest

\n

Reopen a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was reopened.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrequestReviews

\n

Set review requests on a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is getting requests.

\n\n\n\n\n\n\n\n

requestedReviewersEdge (UserEdge)

The edge from the pull request to the requested reviewers.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrerequestCheckSuite

\n

Rerequests an existing check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkSuite (CheckSuite)

The requested check suite.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nresolveReviewThread

\n

Marks a review thread as resolved.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The thread to resolve.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsetEnterpriseIdentityProvider

\n

Creates or updates the identity provider for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

identityProvider (EnterpriseIdentityProvider)

The identity provider for the enterprise.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsetOrganizationInteractionLimit

\n

Set an organization level interaction limit for an organization's public repositories.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

organization (Organization)

The organization that the interaction limit was set for.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsetRepositoryInteractionLimit

\n

Sets an interaction limit setting for a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that the interaction limit was set for.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsetUserInteractionLimit

\n

Set a user level interaction limit for an user's public repositories.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that the interaction limit was set for.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsubmitPullRequestReview

\n

Submits a pending pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The submitted pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ntransferIssue

\n

Transfer an issue to a different repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was transferred.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunarchiveRepository

\n

Unarchives a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that was unarchived.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunfollowUser

\n

Unfollow a user.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that was unfollowed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunlinkRepositoryFromProject

\n

Deletes a repository link from a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The linked Project.

\n\n\n\n\n\n\n\n

repository (Repository)

The linked Repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunlockLockable

\n

Unlock a lockable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

unlockedRecord (Lockable)

The item that was unlocked.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkDiscussionCommentAsAnswer

\n

Unmark a discussion comment as the chosen answer for discussions in an answerable category.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that includes the comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkFileAsViewed

\n

Unmark a pull request file as viewed.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkIssueAsDuplicate

\n

Unmark an issue as a duplicate of another issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

duplicate (IssueOrPullRequest)

The issue or pull request that was marked as a duplicate.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunminimizeComment

\n

Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

unminimizedComment (Minimizable)

The comment that was unminimized.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunpinIssue

\n

Unpin a pinned issue from a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was unpinned.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunresolveReviewThread

\n

Marks a review thread as unresolved.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The thread to resolve.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateBranchProtectionRule

\n

Create a new branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

The newly created BranchProtectionRule.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateCheckRun

\n

Update a check run.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkRun (CheckRun)

The updated check run.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateCheckSuitePreferences

\n

Modifies the settings of an existing check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateDiscussion

\n

Update a discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The modified discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateDiscussionComment

\n

Update the contents of a comment on a Discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The modified discussion comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseAdministratorRole

\n

Updates the role of an enterprise administrator.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of changing the administrator's role.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseAllowPrivateRepositoryForkingSetting

\n

Sets whether private repository forks are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated allow private repository forking setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the allow private repository forking setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseDefaultRepositoryPermissionSetting

\n

Sets the base repository permission for organizations in an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated base repository permission setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the base repository permission setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanChangeRepositoryVisibilitySetting

\n

Sets whether organization members with admin permissions on a repository can change repository visibility.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can change repository visibility setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can change repository visibility setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanCreateRepositoriesSetting

\n

Sets the members can create repositories setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can create repositories setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can create repositories setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanDeleteIssuesSetting

\n

Sets the members can delete issues setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can delete issues setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can delete issues setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanDeleteRepositoriesSetting

\n

Sets the members can delete repositories setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can delete repositories setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can delete repositories setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanInviteCollaboratorsSetting

\n

Sets whether members can invite collaborators are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can invite collaborators setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can invite collaborators setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanMakePurchasesSetting

\n

Sets whether or not an organization admin can make purchases.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can make purchases setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can make purchases setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanUpdateProtectedBranchesSetting

\n

Sets the members can update protected branches setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can update protected branches setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can update protected branches setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanViewDependencyInsightsSetting

\n

Sets the members can view dependency insights for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can view dependency insights setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can view dependency insights setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseOrganizationProjectsSetting

\n

Sets whether organization projects are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated organization projects setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the organization projects setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseProfile

\n

Updates an enterprise's profile.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseRepositoryProjectsSetting

\n

Sets whether repository projects are enabled for a enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated repository projects setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the repository projects setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseTeamDiscussionsSetting

\n

Sets whether team discussions are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated team discussions setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the team discussions setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseTwoFactorAuthenticationRequiredSetting

\n

Sets whether two factor authentication is required for all users in an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated two factor authentication required setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the two factor authentication required setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnvironment

\n

Updates an environment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

environment (Environment)

The updated environment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListEnabledSetting

\n

Sets whether an IP allow list is enabled on an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (IpAllowListOwner)

The IP allow list owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListEntry

\n

Updates an IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListForInstalledAppsEnabledSetting

\n

Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (IpAllowListOwner)

The IP allow list owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIssue

\n

Updates an Issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIssueComment

\n

Updates an IssueComment object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issueComment (IssueComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateLabel

\n

Updates an existing label.

\n
\n\n
\n \n
\n

Preview notice

\n

updateLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

label (Label)

The updated label.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateNotificationRestrictionSetting

\n

Update the setting to restrict notifications to only verified or approved domains available to an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (VerifiableDomainOwner)

The owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateOrganizationAllowPrivateRepositoryForkingSetting

\n

Sets whether private repository forks are enabled for an organization.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the allow private repository forking setting.

\n\n\n\n\n\n\n\n

organization (Organization)

The organization with the updated allow private repository forking setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProject

\n

Updates an existing project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The updated project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectCard

\n

Updates an existing project card.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

The updated ProjectCard.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectColumn

\n

Updates an existing project column.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectColumn (ProjectColumn)

The updated project column.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectNextItemField

\n

Updates a field of an item from a Project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectNextItem (ProjectNextItem)

The updated item.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequest

\n

Update a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestBranch

\n

Merge HEAD from upstream branch into pull request branch.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestReview

\n

Updates the body of a pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The updated pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestReviewComment

\n

Updates a pull request review comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReviewComment (PullRequestReviewComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRef

\n

Update a Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ref (Ref)

The updated Ref.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRefs

\n

Creates, updates and/or deletes multiple refs in a repository.

\n

This mutation takes a list of RefUpdates and performs these updates\non the repository. All updates are performed atomically, meaning that\nif one of them is rejected, no other ref will be modified.

\n

RefUpdate.beforeOid specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n0000000000000000000000000000000000000000 can be used to verify that\nthe references should not exist.

\n

RefUpdate.afterOid specifies the value that the given reference\nwill point to after performing all updates. A value of\n0000000000000000000000000000000000000000 can be used to delete a\nreference.

\n

If RefUpdate.force is set to true, a non-fast-forward updates\nfor the given reference will be allowed.

\n
\n\n
\n \n
\n

Preview notice

\n

updateRefs is available under the Update refs preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRepository

\n

Update information about a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateSponsorshipPreferences

\n

Change visibility of your sponsorship and opt in or out of email updates from the maintainer.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

sponsorship (Sponsorship)

The sponsorship that was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateSubscription

\n

Updates the state for subscribable subjects.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subscribable (Subscribable)

The input subscribable entity.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamDiscussion

\n

Updates a team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussion (TeamDiscussion)

The updated discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamDiscussionComment

\n

Updates a discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussionComment (TeamDiscussionComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamReviewAssignment

\n

Updates team review assignment.

\n
\n\n
\n \n
\n

Preview notice

\n

updateTeamReviewAssignment is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

team (Team)

The team that was modified.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTopics

\n

Replaces the repository's topics with the given topics.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

invalidTopicNames ([String!])

Names of the provided topics that are not valid.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nverifyVerifiableDomain

\n

Verify that a verifiable domain has the expected DNS record.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

domain (VerifiableDomain)

The verifiable domain that was verified.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n", + "miniToc": [ + { + "contents": "\n acceptEnterpriseAdministratorInvitation", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n acceptTopicSuggestion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addAssigneesToAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addEnterpriseSupportEntitlement", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addLabelsToLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectNextItem", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n archiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cancelEnterpriseAdminInvitation", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cancelSponsorship", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n changeUserStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n clearLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneTemplateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closeIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertProjectCardNoteToIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertPullRequestToDraft", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCommitOnBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeploymentStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createSponsorship", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n declineTopicSuggestion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePackageVersion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectNextItem", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n disablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissRepositoryVulnerabilityAlert", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n enablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n followUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n importProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n inviteEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n linkRepositoryToProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n lockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markPullRequestReadyForReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergeBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n minimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n pinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n regenerateEnterpriseIdentityProviderRecoveryCodes", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n regenerateVerifiableDomainToken", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rejectDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeAssigneesFromAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseIdentityProvider", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseSupportEntitlement", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeOutsideCollaborator", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n requestReviews", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rerequestCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n resolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setEnterpriseIdentityProvider", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setOrganizationInteractionLimit", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setRepositoryInteractionLimit", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setUserInteractionLimit", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n submitPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n transferIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unarchiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unfollowUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlinkRepositoryFromProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkIssueAsDuplicate", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unminimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unpinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unresolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckSuitePreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAdministratorRole", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseDefaultRepositoryPermissionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanCreateRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteIssuesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanInviteCollaboratorsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanMakePurchasesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanViewDependencyInsightsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseOrganizationProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseProfile", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseRepositoryProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTeamDiscussionsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListForInstalledAppsEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateNotificationRestrictionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateOrganizationAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectNextItemField", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRefs", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSponsorshipPreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSubscription", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamReviewAssignment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTopics", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n verifyVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + } + ] + }, + "ghes-3.3": { + "html": "
\n
\n

\n \n \naddAssigneesToAssignable

\n

Adds assignees to an assignable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignable (Assignable)

The item that was assigned.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddComment

\n

Adds a comment to an Issue or Pull Request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

commentEdge (IssueCommentEdge)

The edge from the subject's comment connection.

\n\n\n\n\n\n\n\n

subject (Node)

The subject.

\n\n\n\n\n\n\n\n

timelineEdge (IssueTimelineItemEdge)

The edge from the subject's timeline connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddDiscussionComment

\n

Adds a comment to a Discussion, possibly as a reply to another comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The newly created discussion comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddEnterpriseAdmin

\n

Adds an administrator to the global enterprise account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

admin (User)

The user who was added as an administrator.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n

role (EnterpriseAdministratorRole)

The role of the administrator.

\n\n\n\n\n\n\n\n

viewer (User)

The viewer performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddLabelsToLabelable

\n

Adds labels to a labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The item that was labeled.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectCard

\n

Adds a card to a ProjectColumn. Either contentId or note must be provided but not both.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cardEdge (ProjectCardEdge)

The edge from the ProjectColumn's card connection.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectColumn (ProjectColumn)

The ProjectColumn.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectColumn

\n

Adds a column to a Project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

columnEdge (ProjectColumnEdge)

The edge from the project's column connection.

\n\n\n\n\n\n\n\n

project (Project)

The project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReview

\n

Adds a review to a Pull Request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The newly created pull request review.

\n\n\n\n\n\n\n\n

reviewEdge (PullRequestReviewEdge)

The edge from the pull request's review connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReviewComment

\n

Adds a comment to a review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (PullRequestReviewComment)

The newly created comment.

\n\n\n\n\n\n\n\n

commentEdge (PullRequestReviewCommentEdge)

The edge from the review's comment connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReviewThread

\n

Adds a new thread to a pending Pull Request Review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The newly created thread.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddReaction

\n

Adds a reaction to a subject.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

reaction (Reaction)

The reaction object.

\n\n\n\n\n\n\n\n

subject (Reactable)

The reactable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddStar

\n

Adds a star to a Starrable.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

starrable (Starrable)

The starrable.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddUpvote

\n

Add an upvote to a discussion or discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subject (Votable)

The votable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddVerifiableDomain

\n

Adds a verifiable domain to an owning account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

domain (VerifiableDomain)

The verifiable domain that was added.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \napproveDeployments

\n

Approve all pending deployments under one or more environments.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployments ([Deployment!])

The affected deployments.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \napproveVerifiableDomain

\n

Approve a verifiable domain for notification delivery.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

domain (VerifiableDomain)

The verifiable domain that was approved.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \narchiveRepository

\n

Marks a repository as archived.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that was marked as archived.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nchangeUserStatus

\n

Update your status on GitHub.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

status (UserStatus)

Your updated status.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nclearLabelsFromLabelable

\n

Clears all labels from a labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The item that was unlabeled.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloneProject

\n

Creates a new project by cloning configuration from an existing project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

jobStatusId (String)

The id of the JobStatus for populating cloned fields.

\n\n\n\n\n\n\n\n

project (Project)

The new cloned project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloneTemplateRepository

\n

Create a new repository with the same files and directory structure as a template repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The new repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloseIssue

\n

Close an issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was closed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nclosePullRequest

\n

Close a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was closed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nconvertProjectCardNoteToIssue

\n

Convert a project note card to one associated with a newly created issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

The updated ProjectCard.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nconvertPullRequestToDraft

\n

Converts a pull request to draft.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is now a draft.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateBranchProtectionRule

\n

Create a new branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

The newly created BranchProtectionRule.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCheckRun

\n

Create a check run.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkRun (CheckRun)

The newly created check run.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCheckSuite

\n

Create a check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkSuite (CheckSuite)

The newly created check suite.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCommitOnBranch

\n

Appends a commit to the given branch as the authenticated user.

\n

This mutation creates a commit whose parent is the HEAD of the provided\nbranch and also updates that branch to point to the new commit.\nIt can be thought of as similar to git commit.

\n

Locating a Branch

\n

Commits are appended to a branch of type Ref.\nThis must refer to a git branch (i.e. the fully qualified path must\nbegin with refs/heads/, although including this prefix is optional.

\n

Callers may specify the branch to commit to either by its global node\nID or by passing both of repositoryNameWithOwner and refName. For\nmore details see the documentation for CommittableBranch.

\n

Describing Changes

\n

fileChanges are specified as a FilesChanges object describing\nFileAdditions and FileDeletions.

\n

Please see the documentation for FileChanges for more information on\nhow to use this argument to describe any set of file changes.

\n

Authorship

\n

Similar to the web commit interface, this mutation does not support\nspecifying the author or committer of the commit and will not add\nsupport for this in the future.

\n

A commit created by a successful execution of this mutation will be\nauthored by the owner of the credential which authenticates the API\nrequest. The committer will be identical to that of commits authored\nusing the web interface.

\n

If you need full control over author and committer information, please\nuse the Git Database REST API instead.

\n

Commit Signing

\n

Commits made using this mutation are automatically signed by GitHub if\nsupported and will be marked as verified in the user interface.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

commit (Commit)

The new commit.

\n\n\n\n\n\n\n\n

ref (Ref)

The ref which has been updated to point to the new commit.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateContentAttachment

\n

Create a content attachment.

\n
\n\n
\n \n
\n

Preview notice

\n

createContentAttachment is available under the Create content attachments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

contentAttachment (ContentAttachment)

The newly created content attachment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDeployment

\n

Creates a new deployment event.

\n
\n\n
\n \n
\n

Preview notice

\n

createDeployment is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

autoMerged (Boolean)

True if the default branch has been auto-merged into the deployment ref.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployment (Deployment)

The new deployment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDeploymentStatus

\n

Create a deployment status.

\n
\n\n
\n \n
\n

Preview notice

\n

createDeploymentStatus is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deploymentStatus (DeploymentStatus)

The new deployment status.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDiscussion

\n

Create a discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that was just created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateEnterpriseOrganization

\n

Creates an organization as part of an enterprise account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise that owns the created organization.

\n\n\n\n\n\n\n\n

organization (Organization)

The organization that was created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateEnvironment

\n

Creates an environment or simply returns it if already exists.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

environment (Environment)

The new or existing environment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateIpAllowListEntry

\n

Creates a new IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateIssue

\n

Creates a new issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The new issue.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateLabel

\n

Creates a new label.

\n
\n\n
\n \n
\n

Preview notice

\n

createLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

label (Label)

The new label.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateProject

\n

Creates a new project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The new project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreatePullRequest

\n

Create a new pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The new pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateRef

\n

Create a new Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ref (Ref)

The newly created ref.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateRepository

\n

Create a new repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The new repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateTeamDiscussion

\n

Creates a new team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussion (TeamDiscussion)

The new discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateTeamDiscussionComment

\n

Creates a new team discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussionComment (TeamDiscussionComment)

The new comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteBranchProtectionRule

\n

Delete a branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDeployment

\n

Deletes a deployment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDiscussion

\n

Delete a discussion and all of its replies.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that was just deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDiscussionComment

\n

Delete a discussion comment. If it has replies, wipe it instead.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The discussion comment that was just deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteEnvironment

\n

Deletes an environment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIpAllowListEntry

\n

Deletes an IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIssue

\n

Deletes an Issue object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository the issue belonged to.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIssueComment

\n

Deletes an IssueComment object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteLabel

\n

Deletes a label.

\n
\n\n
\n \n
\n

Preview notice

\n

deleteLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePackageVersion

\n

Delete a package version.

\n
\n\n
\n \n
\n

Preview notice

\n

deletePackageVersion is available under the Access to package version deletion preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

success (Boolean)

Whether or not the operation succeeded.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProject

\n

Deletes a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (ProjectOwner)

The repository or organization the project was removed from.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectCard

\n

Deletes a project card.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

column (ProjectColumn)

The column the deleted card was in.

\n\n\n\n\n\n\n\n

deletedCardId (ID)

The deleted card ID.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectColumn

\n

Deletes a project column.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deletedColumnId (ID)

The deleted column ID.

\n\n\n\n\n\n\n\n

project (Project)

The project the deleted column was in.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePullRequestReview

\n

Deletes a pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The deleted pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePullRequestReviewComment

\n

Deletes a pull request review comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The pull request review the deleted comment belonged to.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteRef

\n

Delete a Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteTeamDiscussion

\n

Deletes a team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteTeamDiscussionComment

\n

Deletes a team discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteVerifiableDomain

\n

Deletes a verifiable domain.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (VerifiableDomainOwner)

The owning account from which the domain was deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndisablePullRequestAutoMerge

\n

Disable auto merge on the given pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request auto merge was disabled on.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndismissPullRequestReview

\n

Dismisses an approved or rejected pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The dismissed pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nenablePullRequestAutoMerge

\n

Enable the default auto-merge on a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request auto-merge was enabled on.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nfollowUser

\n

Follow a user.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that was followed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nimportProject

\n

Creates a new project by importing columns and a list of issues/PRs.

\n
\n\n
\n \n
\n

Preview notice

\n

importProject is available under the Import project preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The new Project!.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nlinkRepositoryToProject

\n

Creates a repository link for a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The linked Project.

\n\n\n\n\n\n\n\n

repository (Repository)

The linked Repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nlockLockable

\n

Lock a lockable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

lockedRecord (Lockable)

The item that was locked.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkDiscussionCommentAsAnswer

\n

Mark a discussion comment as the chosen answer for discussions in an answerable category.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that includes the chosen comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkFileAsViewed

\n

Mark a pull request file as viewed.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkPullRequestReadyForReview

\n

Marks a pull request ready for review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is ready for review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmergeBranch

\n

Merge a head into a branch.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

mergeCommit (Commit)

The resulting merge Commit.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmergePullRequest

\n

Merge a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was merged.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nminimizeComment

\n

Minimizes a comment on an Issue, Commit, Pull Request, or Gist.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

minimizedComment (Minimizable)

The comment that was minimized.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmoveProjectCard

\n

Moves a project card to another place.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cardEdge (ProjectCardEdge)

The new edge of the moved card.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmoveProjectColumn

\n

Moves a project column to another place.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

columnEdge (ProjectColumnEdge)

The new edge of the moved column.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \npinIssue

\n

Pin an issue to a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was pinned.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nregenerateVerifiableDomainToken

\n

Regenerates a verifiable domain's verification token.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

verificationToken (String)

The verification token that was generated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrejectDeployments

\n

Reject all pending deployments under one or more environments.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployments ([Deployment!])

The affected deployments.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveAssigneesFromAssignable

\n

Removes assignees from an assignable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignable (Assignable)

The item that was unassigned.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveEnterpriseAdmin

\n

Removes an administrator from the enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

admin (User)

The user who was removed as an administrator.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of removing an administrator.

\n\n\n\n\n\n\n\n

viewer (User)

The viewer performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveLabelsFromLabelable

\n

Removes labels from a Labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The Labelable the labels were removed from.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveOutsideCollaborator

\n

Removes outside collaborator from all repositories in an organization.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

removedUser (User)

The user that was removed as an outside collaborator.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveReaction

\n

Removes a reaction from a subject.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

reaction (Reaction)

The reaction object.

\n\n\n\n\n\n\n\n

subject (Reactable)

The reactable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveStar

\n

Removes a star from a Starrable.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

starrable (Starrable)

The starrable.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveUpvote

\n

Remove an upvote to a discussion or discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subject (Votable)

The votable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nreopenIssue

\n

Reopen a issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was opened.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nreopenPullRequest

\n

Reopen a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was reopened.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrequestReviews

\n

Set review requests on a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is getting requests.

\n\n\n\n\n\n\n\n

requestedReviewersEdge (UserEdge)

The edge from the pull request to the requested reviewers.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrerequestCheckSuite

\n

Rerequests an existing check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkSuite (CheckSuite)

The requested check suite.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nresolveReviewThread

\n

Marks a review thread as resolved.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The thread to resolve.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsubmitPullRequestReview

\n

Submits a pending pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The submitted pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ntransferIssue

\n

Transfer an issue to a different repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was transferred.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunarchiveRepository

\n

Unarchives a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that was unarchived.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunfollowUser

\n

Unfollow a user.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that was unfollowed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunlinkRepositoryFromProject

\n

Deletes a repository link from a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The linked Project.

\n\n\n\n\n\n\n\n

repository (Repository)

The linked Repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunlockLockable

\n

Unlock a lockable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

unlockedRecord (Lockable)

The item that was unlocked.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkDiscussionCommentAsAnswer

\n

Unmark a discussion comment as the chosen answer for discussions in an answerable category.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that includes the comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkFileAsViewed

\n

Unmark a pull request file as viewed.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkIssueAsDuplicate

\n

Unmark an issue as a duplicate of another issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

duplicate (IssueOrPullRequest)

The issue or pull request that was marked as a duplicate.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunminimizeComment

\n

Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

unminimizedComment (Minimizable)

The comment that was unminimized.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunpinIssue

\n

Unpin a pinned issue from a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was unpinned.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunresolveReviewThread

\n

Marks a review thread as unresolved.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The thread to resolve.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateBranchProtectionRule

\n

Create a new branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

The newly created BranchProtectionRule.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateCheckRun

\n

Update a check run.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkRun (CheckRun)

The updated check run.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateCheckSuitePreferences

\n

Modifies the settings of an existing check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateDiscussion

\n

Update a discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The modified discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateDiscussionComment

\n

Update the contents of a comment on a Discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The modified discussion comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseAllowPrivateRepositoryForkingSetting

\n

Sets whether private repository forks are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated allow private repository forking setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the allow private repository forking setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseDefaultRepositoryPermissionSetting

\n

Sets the base repository permission for organizations in an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated base repository permission setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the base repository permission setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanChangeRepositoryVisibilitySetting

\n

Sets whether organization members with admin permissions on a repository can change repository visibility.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can change repository visibility setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can change repository visibility setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanCreateRepositoriesSetting

\n

Sets the members can create repositories setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can create repositories setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can create repositories setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanDeleteIssuesSetting

\n

Sets the members can delete issues setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can delete issues setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can delete issues setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanDeleteRepositoriesSetting

\n

Sets the members can delete repositories setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can delete repositories setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can delete repositories setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanInviteCollaboratorsSetting

\n

Sets whether members can invite collaborators are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can invite collaborators setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can invite collaborators setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanMakePurchasesSetting

\n

Sets whether or not an organization admin can make purchases.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can make purchases setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can make purchases setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanUpdateProtectedBranchesSetting

\n

Sets the members can update protected branches setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can update protected branches setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can update protected branches setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanViewDependencyInsightsSetting

\n

Sets the members can view dependency insights for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can view dependency insights setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can view dependency insights setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseOrganizationProjectsSetting

\n

Sets whether organization projects are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated organization projects setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the organization projects setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseProfile

\n

Updates an enterprise's profile.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseRepositoryProjectsSetting

\n

Sets whether repository projects are enabled for a enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated repository projects setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the repository projects setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseTeamDiscussionsSetting

\n

Sets whether team discussions are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated team discussions setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the team discussions setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseTwoFactorAuthenticationRequiredSetting

\n

Sets whether two factor authentication is required for all users in an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated two factor authentication required setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the two factor authentication required setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnvironment

\n

Updates an environment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

environment (Environment)

The updated environment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListEnabledSetting

\n

Sets whether an IP allow list is enabled on an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (IpAllowListOwner)

The IP allow list owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListEntry

\n

Updates an IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListForInstalledAppsEnabledSetting

\n

Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (IpAllowListOwner)

The IP allow list owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIssue

\n

Updates an Issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIssueComment

\n

Updates an IssueComment object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issueComment (IssueComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateLabel

\n

Updates an existing label.

\n
\n\n
\n \n
\n

Preview notice

\n

updateLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

label (Label)

The updated label.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateNotificationRestrictionSetting

\n

Update the setting to restrict notifications to only verified or approved domains available to an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (VerifiableDomainOwner)

The owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProject

\n

Updates an existing project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The updated project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectCard

\n

Updates an existing project card.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

The updated ProjectCard.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectColumn

\n

Updates an existing project column.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectColumn (ProjectColumn)

The updated project column.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequest

\n

Update a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestReview

\n

Updates the body of a pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The updated pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestReviewComment

\n

Updates a pull request review comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReviewComment (PullRequestReviewComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRef

\n

Update a Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ref (Ref)

The updated Ref.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRefs

\n

Creates, updates and/or deletes multiple refs in a repository.

\n

This mutation takes a list of RefUpdates and performs these updates\non the repository. All updates are performed atomically, meaning that\nif one of them is rejected, no other ref will be modified.

\n

RefUpdate.beforeOid specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n0000000000000000000000000000000000000000 can be used to verify that\nthe references should not exist.

\n

RefUpdate.afterOid specifies the value that the given reference\nwill point to after performing all updates. A value of\n0000000000000000000000000000000000000000 can be used to delete a\nreference.

\n

If RefUpdate.force is set to true, a non-fast-forward updates\nfor the given reference will be allowed.

\n
\n\n
\n \n
\n

Preview notice

\n

updateRefs is available under the Update refs preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRepository

\n

Update information about a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateSubscription

\n

Updates the state for subscribable subjects.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subscribable (Subscribable)

The input subscribable entity.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamDiscussion

\n

Updates a team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussion (TeamDiscussion)

The updated discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamDiscussionComment

\n

Updates a discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussionComment (TeamDiscussionComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamReviewAssignment

\n

Updates team review assignment.

\n
\n\n
\n \n
\n

Preview notice

\n

updateTeamReviewAssignment is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

team (Team)

The team that was modified.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTopics

\n

Replaces the repository's topics with the given topics.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

invalidTopicNames ([String!])

Names of the provided topics that are not valid.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nverifyVerifiableDomain

\n

Verify that a verifiable domain has the expected DNS record.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

domain (VerifiableDomain)

The verifiable domain that was verified.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n", + "miniToc": [ + { + "contents": "\n addAssigneesToAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addLabelsToLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n archiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n changeUserStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n clearLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneTemplateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closeIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertProjectCardNoteToIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertPullRequestToDraft", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCommitOnBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createContentAttachment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeploymentStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePackageVersion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n disablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n enablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n followUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n importProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n linkRepositoryToProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n lockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markPullRequestReadyForReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergeBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n minimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n pinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n regenerateVerifiableDomainToken", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rejectDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeAssigneesFromAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeOutsideCollaborator", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n requestReviews", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rerequestCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n resolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n submitPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n transferIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unarchiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unfollowUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlinkRepositoryFromProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkIssueAsDuplicate", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unminimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unpinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unresolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckSuitePreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseDefaultRepositoryPermissionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanCreateRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteIssuesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanInviteCollaboratorsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanMakePurchasesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanViewDependencyInsightsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseOrganizationProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseProfile", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseRepositoryProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTeamDiscussionsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListForInstalledAppsEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateNotificationRestrictionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRefs", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSubscription", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamReviewAssignment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTopics", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n verifyVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + } + ] + }, + "ghes-3.2": { + "html": "
\n
\n

\n \n \naddAssigneesToAssignable

\n

Adds assignees to an assignable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignable (Assignable)

The item that was assigned.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddComment

\n

Adds a comment to an Issue or Pull Request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

commentEdge (IssueCommentEdge)

The edge from the subject's comment connection.

\n\n\n\n\n\n\n\n

subject (Node)

The subject.

\n\n\n\n\n\n\n\n

timelineEdge (IssueTimelineItemEdge)

The edge from the subject's timeline connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddDiscussionComment

\n

Adds a comment to a Discussion, possibly as a reply to another comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The newly created discussion comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddEnterpriseAdmin

\n

Adds an administrator to the global enterprise account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

admin (User)

The user who was added as an administrator.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n

role (EnterpriseAdministratorRole)

The role of the administrator.

\n\n\n\n\n\n\n\n

viewer (User)

The viewer performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddLabelsToLabelable

\n

Adds labels to a labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The item that was labeled.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectCard

\n

Adds a card to a ProjectColumn. Either contentId or note must be provided but not both.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cardEdge (ProjectCardEdge)

The edge from the ProjectColumn's card connection.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectColumn (ProjectColumn)

The ProjectColumn.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectColumn

\n

Adds a column to a Project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

columnEdge (ProjectColumnEdge)

The edge from the project's column connection.

\n\n\n\n\n\n\n\n

project (Project)

The project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReview

\n

Adds a review to a Pull Request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The newly created pull request review.

\n\n\n\n\n\n\n\n

reviewEdge (PullRequestReviewEdge)

The edge from the pull request's review connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReviewComment

\n

Adds a comment to a review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (PullRequestReviewComment)

The newly created comment.

\n\n\n\n\n\n\n\n

commentEdge (PullRequestReviewCommentEdge)

The edge from the review's comment connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReviewThread

\n

Adds a new thread to a pending Pull Request Review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The newly created thread.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddReaction

\n

Adds a reaction to a subject.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

reaction (Reaction)

The reaction object.

\n\n\n\n\n\n\n\n

subject (Reactable)

The reactable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddStar

\n

Adds a star to a Starrable.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

starrable (Starrable)

The starrable.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddUpvote

\n

Add an upvote to a discussion or discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subject (Votable)

The votable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddVerifiableDomain

\n

Adds a verifiable domain to an owning account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

domain (VerifiableDomain)

The verifiable domain that was added.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \napproveDeployments

\n

Approve all pending deployments under one or more environments.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployments ([Deployment!])

The affected deployments.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \napproveVerifiableDomain

\n

Approve a verifiable domain for notification delivery.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

domain (VerifiableDomain)

The verifiable domain that was approved.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \narchiveRepository

\n

Marks a repository as archived.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that was marked as archived.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nchangeUserStatus

\n

Update your status on GitHub.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

status (UserStatus)

Your updated status.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nclearLabelsFromLabelable

\n

Clears all labels from a labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The item that was unlabeled.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloneProject

\n

Creates a new project by cloning configuration from an existing project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

jobStatusId (String)

The id of the JobStatus for populating cloned fields.

\n\n\n\n\n\n\n\n

project (Project)

The new cloned project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloneTemplateRepository

\n

Create a new repository with the same files and directory structure as a template repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The new repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloseIssue

\n

Close an issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was closed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nclosePullRequest

\n

Close a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was closed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nconvertProjectCardNoteToIssue

\n

Convert a project note card to one associated with a newly created issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

The updated ProjectCard.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nconvertPullRequestToDraft

\n

Converts a pull request to draft.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is now a draft.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateBranchProtectionRule

\n

Create a new branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

The newly created BranchProtectionRule.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCheckRun

\n

Create a check run.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkRun (CheckRun)

The newly created check run.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCheckSuite

\n

Create a check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkSuite (CheckSuite)

The newly created check suite.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateContentAttachment

\n

Create a content attachment.

\n
\n\n
\n \n
\n

Preview notice

\n

createContentAttachment is available under the Create content attachments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

contentAttachment (ContentAttachment)

The newly created content attachment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDeployment

\n

Creates a new deployment event.

\n
\n\n
\n \n
\n

Preview notice

\n

createDeployment is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

autoMerged (Boolean)

True if the default branch has been auto-merged into the deployment ref.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployment (Deployment)

The new deployment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDeploymentStatus

\n

Create a deployment status.

\n
\n\n
\n \n
\n

Preview notice

\n

createDeploymentStatus is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deploymentStatus (DeploymentStatus)

The new deployment status.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDiscussion

\n

Create a discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that was just created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateEnterpriseOrganization

\n

Creates an organization as part of an enterprise account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise that owns the created organization.

\n\n\n\n\n\n\n\n

organization (Organization)

The organization that was created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateEnvironment

\n

Creates an environment or simply returns it if already exists.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

environment (Environment)

The new or existing environment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateIpAllowListEntry

\n

Creates a new IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateIssue

\n

Creates a new issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The new issue.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateLabel

\n

Creates a new label.

\n
\n\n
\n \n
\n

Preview notice

\n

createLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

label (Label)

The new label.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateProject

\n

Creates a new project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The new project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreatePullRequest

\n

Create a new pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The new pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateRef

\n

Create a new Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ref (Ref)

The newly created ref.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateRepository

\n

Create a new repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The new repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateTeamDiscussion

\n

Creates a new team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussion (TeamDiscussion)

The new discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateTeamDiscussionComment

\n

Creates a new team discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussionComment (TeamDiscussionComment)

The new comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteBranchProtectionRule

\n

Delete a branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDeployment

\n

Deletes a deployment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDiscussion

\n

Delete a discussion and all of its replies.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that was just deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDiscussionComment

\n

Delete a discussion comment. If it has replies, wipe it instead.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The discussion comment that was just deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteEnvironment

\n

Deletes an environment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIpAllowListEntry

\n

Deletes an IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIssue

\n

Deletes an Issue object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository the issue belonged to.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIssueComment

\n

Deletes an IssueComment object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteLabel

\n

Deletes a label.

\n
\n\n
\n \n
\n

Preview notice

\n

deleteLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePackageVersion

\n

Delete a package version.

\n
\n\n
\n \n
\n

Preview notice

\n

deletePackageVersion is available under the Access to package version deletion preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

success (Boolean)

Whether or not the operation succeeded.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProject

\n

Deletes a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (ProjectOwner)

The repository or organization the project was removed from.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectCard

\n

Deletes a project card.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

column (ProjectColumn)

The column the deleted card was in.

\n\n\n\n\n\n\n\n

deletedCardId (ID)

The deleted card ID.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectColumn

\n

Deletes a project column.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deletedColumnId (ID)

The deleted column ID.

\n\n\n\n\n\n\n\n

project (Project)

The project the deleted column was in.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePullRequestReview

\n

Deletes a pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The deleted pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePullRequestReviewComment

\n

Deletes a pull request review comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The pull request review the deleted comment belonged to.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteRef

\n

Delete a Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteTeamDiscussion

\n

Deletes a team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteTeamDiscussionComment

\n

Deletes a team discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteVerifiableDomain

\n

Deletes a verifiable domain.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (VerifiableDomainOwner)

The owning account from which the domain was deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndisablePullRequestAutoMerge

\n

Disable auto merge on the given pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request auto merge was disabled on.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndismissPullRequestReview

\n

Dismisses an approved or rejected pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The dismissed pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nenablePullRequestAutoMerge

\n

Enable the default auto-merge on a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request auto-merge was enabled on.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nfollowUser

\n

Follow a user.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that was followed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nimportProject

\n

Creates a new project by importing columns and a list of issues/PRs.

\n
\n\n
\n \n
\n

Preview notice

\n

importProject is available under the Import project preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The new Project!.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nlinkRepositoryToProject

\n

Creates a repository link for a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The linked Project.

\n\n\n\n\n\n\n\n

repository (Repository)

The linked Repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nlockLockable

\n

Lock a lockable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

lockedRecord (Lockable)

The item that was locked.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkDiscussionCommentAsAnswer

\n

Mark a discussion comment as the chosen answer for discussions in an answerable category.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that includes the chosen comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkFileAsViewed

\n

Mark a pull request file as viewed.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkPullRequestReadyForReview

\n

Marks a pull request ready for review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is ready for review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmergeBranch

\n

Merge a head into a branch.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

mergeCommit (Commit)

The resulting merge Commit.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmergePullRequest

\n

Merge a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was merged.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nminimizeComment

\n

Minimizes a comment on an Issue, Commit, Pull Request, or Gist.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

minimizedComment (Minimizable)

The comment that was minimized.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmoveProjectCard

\n

Moves a project card to another place.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cardEdge (ProjectCardEdge)

The new edge of the moved card.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmoveProjectColumn

\n

Moves a project column to another place.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

columnEdge (ProjectColumnEdge)

The new edge of the moved column.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \npinIssue

\n

Pin an issue to a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was pinned.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nregenerateVerifiableDomainToken

\n

Regenerates a verifiable domain's verification token.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

verificationToken (String)

The verification token that was generated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrejectDeployments

\n

Reject all pending deployments under one or more environments.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployments ([Deployment!])

The affected deployments.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveAssigneesFromAssignable

\n

Removes assignees from an assignable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignable (Assignable)

The item that was unassigned.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveEnterpriseAdmin

\n

Removes an administrator from the enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

admin (User)

The user who was removed as an administrator.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of removing an administrator.

\n\n\n\n\n\n\n\n

viewer (User)

The viewer performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveLabelsFromLabelable

\n

Removes labels from a Labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The Labelable the labels were removed from.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveOutsideCollaborator

\n

Removes outside collaborator from all repositories in an organization.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

removedUser (User)

The user that was removed as an outside collaborator.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveReaction

\n

Removes a reaction from a subject.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

reaction (Reaction)

The reaction object.

\n\n\n\n\n\n\n\n

subject (Reactable)

The reactable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveStar

\n

Removes a star from a Starrable.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

starrable (Starrable)

The starrable.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveUpvote

\n

Remove an upvote to a discussion or discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subject (Votable)

The votable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nreopenIssue

\n

Reopen a issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was opened.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nreopenPullRequest

\n

Reopen a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was reopened.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrequestReviews

\n

Set review requests on a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is getting requests.

\n\n\n\n\n\n\n\n

requestedReviewersEdge (UserEdge)

The edge from the pull request to the requested reviewers.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrerequestCheckSuite

\n

Rerequests an existing check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkSuite (CheckSuite)

The requested check suite.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nresolveReviewThread

\n

Marks a review thread as resolved.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The thread to resolve.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsubmitPullRequestReview

\n

Submits a pending pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The submitted pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ntransferIssue

\n

Transfer an issue to a different repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was transferred.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunarchiveRepository

\n

Unarchives a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that was unarchived.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunfollowUser

\n

Unfollow a user.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that was unfollowed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunlinkRepositoryFromProject

\n

Deletes a repository link from a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The linked Project.

\n\n\n\n\n\n\n\n

repository (Repository)

The linked Repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunlockLockable

\n

Unlock a lockable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

unlockedRecord (Lockable)

The item that was unlocked.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkDiscussionCommentAsAnswer

\n

Unmark a discussion comment as the chosen answer for discussions in an answerable category.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that includes the comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkFileAsViewed

\n

Unmark a pull request file as viewed.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkIssueAsDuplicate

\n

Unmark an issue as a duplicate of another issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

duplicate (IssueOrPullRequest)

The issue or pull request that was marked as a duplicate.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunminimizeComment

\n

Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

unminimizedComment (Minimizable)

The comment that was unminimized.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunpinIssue

\n

Unpin a pinned issue from a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was unpinned.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunresolveReviewThread

\n

Marks a review thread as unresolved.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The thread to resolve.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateBranchProtectionRule

\n

Create a new branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

The newly created BranchProtectionRule.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateCheckRun

\n

Update a check run.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkRun (CheckRun)

The updated check run.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateCheckSuitePreferences

\n

Modifies the settings of an existing check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateDiscussion

\n

Update a discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The modified discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateDiscussionComment

\n

Update the contents of a comment on a Discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The modified discussion comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseAllowPrivateRepositoryForkingSetting

\n

Sets whether private repository forks are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated allow private repository forking setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the allow private repository forking setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseDefaultRepositoryPermissionSetting

\n

Sets the base repository permission for organizations in an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated base repository permission setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the base repository permission setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanChangeRepositoryVisibilitySetting

\n

Sets whether organization members with admin permissions on a repository can change repository visibility.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can change repository visibility setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can change repository visibility setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanCreateRepositoriesSetting

\n

Sets the members can create repositories setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can create repositories setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can create repositories setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanDeleteIssuesSetting

\n

Sets the members can delete issues setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can delete issues setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can delete issues setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanDeleteRepositoriesSetting

\n

Sets the members can delete repositories setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can delete repositories setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can delete repositories setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanInviteCollaboratorsSetting

\n

Sets whether members can invite collaborators are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can invite collaborators setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can invite collaborators setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanMakePurchasesSetting

\n

Sets whether or not an organization admin can make purchases.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can make purchases setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can make purchases setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanUpdateProtectedBranchesSetting

\n

Sets the members can update protected branches setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can update protected branches setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can update protected branches setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanViewDependencyInsightsSetting

\n

Sets the members can view dependency insights for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can view dependency insights setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can view dependency insights setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseOrganizationProjectsSetting

\n

Sets whether organization projects are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated organization projects setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the organization projects setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseProfile

\n

Updates an enterprise's profile.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseRepositoryProjectsSetting

\n

Sets whether repository projects are enabled for a enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated repository projects setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the repository projects setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseTeamDiscussionsSetting

\n

Sets whether team discussions are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated team discussions setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the team discussions setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseTwoFactorAuthenticationRequiredSetting

\n

Sets whether two factor authentication is required for all users in an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated two factor authentication required setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the two factor authentication required setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnvironment

\n

Updates an environment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

environment (Environment)

The updated environment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListEnabledSetting

\n

Sets whether an IP allow list is enabled on an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (IpAllowListOwner)

The IP allow list owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListEntry

\n

Updates an IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListForInstalledAppsEnabledSetting

\n

Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (IpAllowListOwner)

The IP allow list owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIssue

\n

Updates an Issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIssueComment

\n

Updates an IssueComment object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issueComment (IssueComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateLabel

\n

Updates an existing label.

\n
\n\n
\n \n
\n

Preview notice

\n

updateLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

label (Label)

The updated label.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateNotificationRestrictionSetting

\n

Update the setting to restrict notifications to only verified or approved domains available to an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (VerifiableDomainOwner)

The owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProject

\n

Updates an existing project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The updated project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectCard

\n

Updates an existing project card.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

The updated ProjectCard.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectColumn

\n

Updates an existing project column.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectColumn (ProjectColumn)

The updated project column.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequest

\n

Update a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestReview

\n

Updates the body of a pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The updated pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestReviewComment

\n

Updates a pull request review comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReviewComment (PullRequestReviewComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRef

\n

Update a Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ref (Ref)

The updated Ref.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRefs

\n

Creates, updates and/or deletes multiple refs in a repository.

\n

This mutation takes a list of RefUpdates and performs these updates\non the repository. All updates are performed atomically, meaning that\nif one of them is rejected, no other ref will be modified.

\n

RefUpdate.beforeOid specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n0000000000000000000000000000000000000000 can be used to verify that\nthe references should not exist.

\n

RefUpdate.afterOid specifies the value that the given reference\nwill point to after performing all updates. A value of\n0000000000000000000000000000000000000000 can be used to delete a\nreference.

\n

If RefUpdate.force is set to true, a non-fast-forward updates\nfor the given reference will be allowed.

\n
\n\n
\n \n
\n

Preview notice

\n

updateRefs is available under the Update refs preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRepository

\n

Update information about a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateSubscription

\n

Updates the state for subscribable subjects.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subscribable (Subscribable)

The input subscribable entity.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamDiscussion

\n

Updates a team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussion (TeamDiscussion)

The updated discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamDiscussionComment

\n

Updates a discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussionComment (TeamDiscussionComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamReviewAssignment

\n

Updates team review assignment.

\n
\n\n
\n \n
\n

Preview notice

\n

updateTeamReviewAssignment is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

team (Team)

The team that was modified.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTopics

\n

Replaces the repository's topics with the given topics.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

invalidTopicNames ([String!])

Names of the provided topics that are not valid.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nverifyVerifiableDomain

\n

Verify that a verifiable domain has the expected DNS record.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

domain (VerifiableDomain)

The verifiable domain that was verified.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n", + "miniToc": [ + { + "contents": "\n addAssigneesToAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addLabelsToLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n archiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n changeUserStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n clearLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneTemplateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closeIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertProjectCardNoteToIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertPullRequestToDraft", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createContentAttachment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeploymentStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePackageVersion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n disablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n enablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n followUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n importProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n linkRepositoryToProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n lockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markPullRequestReadyForReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergeBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n minimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n pinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n regenerateVerifiableDomainToken", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rejectDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeAssigneesFromAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeOutsideCollaborator", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n requestReviews", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rerequestCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n resolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n submitPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n transferIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unarchiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unfollowUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlinkRepositoryFromProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkIssueAsDuplicate", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unminimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unpinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unresolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckSuitePreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseDefaultRepositoryPermissionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanCreateRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteIssuesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanInviteCollaboratorsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanMakePurchasesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanViewDependencyInsightsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseOrganizationProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseProfile", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseRepositoryProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTeamDiscussionsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListForInstalledAppsEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateNotificationRestrictionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRefs", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSubscription", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamReviewAssignment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTopics", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n verifyVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + } + ] + }, + "ghes-3.1": { + "html": "
\n
\n

\n \n \naddAssigneesToAssignable

\n

Adds assignees to an assignable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignable (Assignable)

The item that was assigned.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddComment

\n

Adds a comment to an Issue or Pull Request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

commentEdge (IssueCommentEdge)

The edge from the subject's comment connection.

\n\n\n\n\n\n\n\n

subject (Node)

The subject.

\n\n\n\n\n\n\n\n

timelineEdge (IssueTimelineItemEdge)

The edge from the subject's timeline connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddEnterpriseAdmin

\n

Adds an administrator to the global enterprise account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

admin (User)

The user who was added as an administrator.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n

role (EnterpriseAdministratorRole)

The role of the administrator.

\n\n\n\n\n\n\n\n

viewer (User)

The viewer performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddLabelsToLabelable

\n

Adds labels to a labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The item that was labeled.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectCard

\n

Adds a card to a ProjectColumn. Either contentId or note must be provided but not both.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cardEdge (ProjectCardEdge)

The edge from the ProjectColumn's card connection.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectColumn (ProjectColumn)

The ProjectColumn.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectColumn

\n

Adds a column to a Project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

columnEdge (ProjectColumnEdge)

The edge from the project's column connection.

\n\n\n\n\n\n\n\n

project (Project)

The project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReview

\n

Adds a review to a Pull Request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The newly created pull request review.

\n\n\n\n\n\n\n\n

reviewEdge (PullRequestReviewEdge)

The edge from the pull request's review connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReviewComment

\n

Adds a comment to a review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (PullRequestReviewComment)

The newly created comment.

\n\n\n\n\n\n\n\n

commentEdge (PullRequestReviewCommentEdge)

The edge from the review's comment connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReviewThread

\n

Adds a new thread to a pending Pull Request Review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The newly created thread.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddReaction

\n

Adds a reaction to a subject.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

reaction (Reaction)

The reaction object.

\n\n\n\n\n\n\n\n

subject (Reactable)

The reactable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddStar

\n

Adds a star to a Starrable.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

starrable (Starrable)

The starrable.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \narchiveRepository

\n

Marks a repository as archived.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that was marked as archived.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nchangeUserStatus

\n

Update your status on GitHub.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

status (UserStatus)

Your updated status.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nclearLabelsFromLabelable

\n

Clears all labels from a labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The item that was unlabeled.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloneProject

\n

Creates a new project by cloning configuration from an existing project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

jobStatusId (String)

The id of the JobStatus for populating cloned fields.

\n\n\n\n\n\n\n\n

project (Project)

The new cloned project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloneTemplateRepository

\n

Create a new repository with the same files and directory structure as a template repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The new repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloseIssue

\n

Close an issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was closed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nclosePullRequest

\n

Close a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was closed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nconvertProjectCardNoteToIssue

\n

Convert a project note card to one associated with a newly created issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

The updated ProjectCard.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateBranchProtectionRule

\n

Create a new branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

The newly created BranchProtectionRule.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCheckRun

\n

Create a check run.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkRun (CheckRun)

The newly created check run.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCheckSuite

\n

Create a check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkSuite (CheckSuite)

The newly created check suite.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateContentAttachment

\n

Create a content attachment.

\n
\n\n
\n \n
\n

Preview notice

\n

createContentAttachment is available under the Create content attachments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

contentAttachment (ContentAttachment)

The newly created content attachment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDeployment

\n

Creates a new deployment event.

\n
\n\n
\n \n
\n

Preview notice

\n

createDeployment is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

autoMerged (Boolean)

True if the default branch has been auto-merged into the deployment ref.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployment (Deployment)

The new deployment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDeploymentStatus

\n

Create a deployment status.

\n
\n\n
\n \n
\n

Preview notice

\n

createDeploymentStatus is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deploymentStatus (DeploymentStatus)

The new deployment status.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateEnterpriseOrganization

\n

Creates an organization as part of an enterprise account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise that owns the created organization.

\n\n\n\n\n\n\n\n

organization (Organization)

The organization that was created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateIpAllowListEntry

\n

Creates a new IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateIssue

\n

Creates a new issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The new issue.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateLabel

\n

Creates a new label.

\n
\n\n
\n \n
\n

Preview notice

\n

createLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

label (Label)

The new label.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateProject

\n

Creates a new project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The new project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreatePullRequest

\n

Create a new pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The new pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateRef

\n

Create a new Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ref (Ref)

The newly created ref.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateRepository

\n

Create a new repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The new repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateTeamDiscussion

\n

Creates a new team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussion (TeamDiscussion)

The new discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateTeamDiscussionComment

\n

Creates a new team discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussionComment (TeamDiscussionComment)

The new comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteBranchProtectionRule

\n

Delete a branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDeployment

\n

Deletes a deployment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIpAllowListEntry

\n

Deletes an IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIssue

\n

Deletes an Issue object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository the issue belonged to.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIssueComment

\n

Deletes an IssueComment object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteLabel

\n

Deletes a label.

\n
\n\n
\n \n
\n

Preview notice

\n

deleteLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePackageVersion

\n

Delete a package version.

\n
\n\n
\n \n
\n

Preview notice

\n

deletePackageVersion is available under the Access to package version deletion preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

success (Boolean)

Whether or not the operation succeeded.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProject

\n

Deletes a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (ProjectOwner)

The repository or organization the project was removed from.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectCard

\n

Deletes a project card.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

column (ProjectColumn)

The column the deleted card was in.

\n\n\n\n\n\n\n\n

deletedCardId (ID)

The deleted card ID.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectColumn

\n

Deletes a project column.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deletedColumnId (ID)

The deleted column ID.

\n\n\n\n\n\n\n\n

project (Project)

The project the deleted column was in.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePullRequestReview

\n

Deletes a pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The deleted pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePullRequestReviewComment

\n

Deletes a pull request review comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The pull request review the deleted comment belonged to.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteRef

\n

Delete a Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteTeamDiscussion

\n

Deletes a team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteTeamDiscussionComment

\n

Deletes a team discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndisablePullRequestAutoMerge

\n

Disable auto merge on the given pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request auto merge was disabled on.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndismissPullRequestReview

\n

Dismisses an approved or rejected pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The dismissed pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nenablePullRequestAutoMerge

\n

Enable the default auto-merge on a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request auto-merge was enabled on.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nfollowUser

\n

Follow a user.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that was followed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nimportProject

\n

Creates a new project by importing columns and a list of issues/PRs.

\n
\n\n
\n \n
\n

Preview notice

\n

importProject is available under the Import project preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The new Project!.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nlinkRepositoryToProject

\n

Creates a repository link for a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The linked Project.

\n\n\n\n\n\n\n\n

repository (Repository)

The linked Repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nlockLockable

\n

Lock a lockable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

lockedRecord (Lockable)

The item that was locked.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkFileAsViewed

\n

Mark a pull request file as viewed.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkPullRequestReadyForReview

\n

Marks a pull request ready for review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is ready for review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmergeBranch

\n

Merge a head into a branch.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

mergeCommit (Commit)

The resulting merge Commit.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmergePullRequest

\n

Merge a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was merged.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nminimizeComment

\n

Minimizes a comment on an Issue, Commit, Pull Request, or Gist.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

minimizedComment (Minimizable)

The comment that was minimized.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmoveProjectCard

\n

Moves a project card to another place.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cardEdge (ProjectCardEdge)

The new edge of the moved card.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmoveProjectColumn

\n

Moves a project column to another place.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

columnEdge (ProjectColumnEdge)

The new edge of the moved column.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \npinIssue

\n

Pin an issue to a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was pinned.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveAssigneesFromAssignable

\n

Removes assignees from an assignable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignable (Assignable)

The item that was unassigned.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveEnterpriseAdmin

\n

Removes an administrator from the enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

admin (User)

The user who was removed as an administrator.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of removing an administrator.

\n\n\n\n\n\n\n\n

viewer (User)

The viewer performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveLabelsFromLabelable

\n

Removes labels from a Labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The Labelable the labels were removed from.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveOutsideCollaborator

\n

Removes outside collaborator from all repositories in an organization.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

removedUser (User)

The user that was removed as an outside collaborator.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveReaction

\n

Removes a reaction from a subject.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

reaction (Reaction)

The reaction object.

\n\n\n\n\n\n\n\n

subject (Reactable)

The reactable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveStar

\n

Removes a star from a Starrable.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

starrable (Starrable)

The starrable.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nreopenIssue

\n

Reopen a issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was opened.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nreopenPullRequest

\n

Reopen a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was reopened.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrequestReviews

\n

Set review requests on a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is getting requests.

\n\n\n\n\n\n\n\n

requestedReviewersEdge (UserEdge)

The edge from the pull request to the requested reviewers.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrerequestCheckSuite

\n

Rerequests an existing check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkSuite (CheckSuite)

The requested check suite.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nresolveReviewThread

\n

Marks a review thread as resolved.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The thread to resolve.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsubmitPullRequestReview

\n

Submits a pending pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The submitted pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ntransferIssue

\n

Transfer an issue to a different repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was transferred.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunarchiveRepository

\n

Unarchives a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that was unarchived.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunfollowUser

\n

Unfollow a user.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that was unfollowed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunlinkRepositoryFromProject

\n

Deletes a repository link from a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The linked Project.

\n\n\n\n\n\n\n\n

repository (Repository)

The linked Repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunlockLockable

\n

Unlock a lockable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

unlockedRecord (Lockable)

The item that was unlocked.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkFileAsViewed

\n

Unmark a pull request file as viewed.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkIssueAsDuplicate

\n

Unmark an issue as a duplicate of another issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

duplicate (IssueOrPullRequest)

The issue or pull request that was marked as a duplicate.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunminimizeComment

\n

Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

unminimizedComment (Minimizable)

The comment that was unminimized.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunpinIssue

\n

Unpin a pinned issue from a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was unpinned.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunresolveReviewThread

\n

Marks a review thread as unresolved.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The thread to resolve.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateBranchProtectionRule

\n

Create a new branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

The newly created BranchProtectionRule.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateCheckRun

\n

Update a check run.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkRun (CheckRun)

The updated check run.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateCheckSuitePreferences

\n

Modifies the settings of an existing check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseAllowPrivateRepositoryForkingSetting

\n

Sets whether private repository forks are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated allow private repository forking setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the allow private repository forking setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseDefaultRepositoryPermissionSetting

\n

Sets the default repository permission for organizations in an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated default repository permission setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the default repository permission setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanChangeRepositoryVisibilitySetting

\n

Sets whether organization members with admin permissions on a repository can change repository visibility.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can change repository visibility setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can change repository visibility setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanCreateRepositoriesSetting

\n

Sets the members can create repositories setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can create repositories setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can create repositories setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanDeleteIssuesSetting

\n

Sets the members can delete issues setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can delete issues setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can delete issues setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanDeleteRepositoriesSetting

\n

Sets the members can delete repositories setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can delete repositories setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can delete repositories setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanInviteCollaboratorsSetting

\n

Sets whether members can invite collaborators are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can invite collaborators setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can invite collaborators setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanMakePurchasesSetting

\n

Sets whether or not an organization admin can make purchases.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can make purchases setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can make purchases setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanUpdateProtectedBranchesSetting

\n

Sets the members can update protected branches setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can update protected branches setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can update protected branches setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanViewDependencyInsightsSetting

\n

Sets the members can view dependency insights for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can view dependency insights setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can view dependency insights setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseOrganizationProjectsSetting

\n

Sets whether organization projects are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated organization projects setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the organization projects setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseProfile

\n

Updates an enterprise's profile.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseRepositoryProjectsSetting

\n

Sets whether repository projects are enabled for a enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated repository projects setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the repository projects setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseTeamDiscussionsSetting

\n

Sets whether team discussions are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated team discussions setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the team discussions setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseTwoFactorAuthenticationRequiredSetting

\n

Sets whether two factor authentication is required for all users in an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated two factor authentication required setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the two factor authentication required setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListEnabledSetting

\n

Sets whether an IP allow list is enabled on an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (IpAllowListOwner)

The IP allow list owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListEntry

\n

Updates an IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIssue

\n

Updates an Issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIssueComment

\n

Updates an IssueComment object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issueComment (IssueComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateLabel

\n

Updates an existing label.

\n
\n\n
\n \n
\n

Preview notice

\n

updateLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

label (Label)

The updated label.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProject

\n

Updates an existing project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The updated project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectCard

\n

Updates an existing project card.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

The updated ProjectCard.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectColumn

\n

Updates an existing project column.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectColumn (ProjectColumn)

The updated project column.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequest

\n

Update a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestReview

\n

Updates the body of a pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The updated pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestReviewComment

\n

Updates a pull request review comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReviewComment (PullRequestReviewComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRef

\n

Update a Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ref (Ref)

The updated Ref.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRefs

\n

Creates, updates and/or deletes multiple refs in a repository.

\n

This mutation takes a list of RefUpdates and performs these updates\non the repository. All updates are performed atomically, meaning that\nif one of them is rejected, no other ref will be modified.

\n

RefUpdate.beforeOid specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n0000000000000000000000000000000000000000 can be used to verify that\nthe references should not exist.

\n

RefUpdate.afterOid specifies the value that the given reference\nwill point to after performing all updates. A value of\n0000000000000000000000000000000000000000 can be used to delete a\nreference.

\n

If RefUpdate.force is set to true, a non-fast-forward updates\nfor the given reference will be allowed.

\n
\n\n
\n \n
\n

Preview notice

\n

updateRefs is available under the Update refs preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRepository

\n

Update information about a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateSubscription

\n

Updates the state for subscribable subjects.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subscribable (Subscribable)

The input subscribable entity.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamDiscussion

\n

Updates a team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussion (TeamDiscussion)

The updated discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamDiscussionComment

\n

Updates a discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussionComment (TeamDiscussionComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamReviewAssignment

\n

Updates team review assignment.

\n
\n\n
\n \n
\n

Preview notice

\n

updateTeamReviewAssignment is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

team (Team)

The team that was modified.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTopics

\n

Replaces the repository's topics with the given topics.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

invalidTopicNames ([String!])

Names of the provided topics that are not valid.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n", + "miniToc": [ + { + "contents": "\n addAssigneesToAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addLabelsToLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n archiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n changeUserStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n clearLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneTemplateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closeIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertProjectCardNoteToIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createContentAttachment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeploymentStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePackageVersion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n disablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n enablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n followUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n importProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n linkRepositoryToProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n lockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markPullRequestReadyForReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergeBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n minimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n pinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeAssigneesFromAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeOutsideCollaborator", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n requestReviews", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rerequestCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n resolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n submitPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n transferIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unarchiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unfollowUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlinkRepositoryFromProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkIssueAsDuplicate", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unminimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unpinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unresolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckSuitePreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseDefaultRepositoryPermissionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanCreateRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteIssuesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanInviteCollaboratorsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanMakePurchasesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanViewDependencyInsightsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseOrganizationProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseProfile", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseRepositoryProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTeamDiscussionsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRefs", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSubscription", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamReviewAssignment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTopics", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + } + ] + }, + "ghes-3.0": { + "html": "
\n
\n

\n \n \naddAssigneesToAssignable

\n

Adds assignees to an assignable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignable (Assignable)

The item that was assigned.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddComment

\n

Adds a comment to an Issue or Pull Request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

commentEdge (IssueCommentEdge)

The edge from the subject's comment connection.

\n\n\n\n\n\n\n\n

subject (Node)

The subject.

\n\n\n\n\n\n\n\n

timelineEdge (IssueTimelineItemEdge)

The edge from the subject's timeline connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddEnterpriseAdmin

\n

Adds an administrator to the global enterprise account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

admin (User)

The user who was added as an administrator.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n

role (EnterpriseAdministratorRole)

The role of the administrator.

\n\n\n\n\n\n\n\n

viewer (User)

The viewer performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddLabelsToLabelable

\n

Adds labels to a labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The item that was labeled.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectCard

\n

Adds a card to a ProjectColumn. Either contentId or note must be provided but not both.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cardEdge (ProjectCardEdge)

The edge from the ProjectColumn's card connection.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectColumn (ProjectColumn)

The ProjectColumn.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectColumn

\n

Adds a column to a Project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

columnEdge (ProjectColumnEdge)

The edge from the project's column connection.

\n\n\n\n\n\n\n\n

project (Project)

The project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReview

\n

Adds a review to a Pull Request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The newly created pull request review.

\n\n\n\n\n\n\n\n

reviewEdge (PullRequestReviewEdge)

The edge from the pull request's review connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReviewComment

\n

Adds a comment to a review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (PullRequestReviewComment)

The newly created comment.

\n\n\n\n\n\n\n\n

commentEdge (PullRequestReviewCommentEdge)

The edge from the review's comment connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReviewThread

\n

Adds a new thread to a pending Pull Request Review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The newly created thread.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddReaction

\n

Adds a reaction to a subject.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

reaction (Reaction)

The reaction object.

\n\n\n\n\n\n\n\n

subject (Reactable)

The reactable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddStar

\n

Adds a star to a Starrable.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

starrable (Starrable)

The starrable.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \narchiveRepository

\n

Marks a repository as archived.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that was marked as archived.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nchangeUserStatus

\n

Update your status on GitHub.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

status (UserStatus)

Your updated status.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nclearLabelsFromLabelable

\n

Clears all labels from a labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The item that was unlabeled.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloneProject

\n

Creates a new project by cloning configuration from an existing project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

jobStatusId (String)

The id of the JobStatus for populating cloned fields.

\n\n\n\n\n\n\n\n

project (Project)

The new cloned project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloneTemplateRepository

\n

Create a new repository with the same files and directory structure as a template repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The new repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloseIssue

\n

Close an issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was closed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nclosePullRequest

\n

Close a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was closed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nconvertProjectCardNoteToIssue

\n

Convert a project note card to one associated with a newly created issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

The updated ProjectCard.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateBranchProtectionRule

\n

Create a new branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

The newly created BranchProtectionRule.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCheckRun

\n

Create a check run.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkRun (CheckRun)

The newly created check run.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCheckSuite

\n

Create a check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkSuite (CheckSuite)

The newly created check suite.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateContentAttachment

\n

Create a content attachment.

\n
\n\n
\n \n
\n

Preview notice

\n

createContentAttachment is available under the Create content attachments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

contentAttachment (ContentAttachment)

The newly created content attachment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDeployment

\n

Creates a new deployment event.

\n
\n\n
\n \n
\n

Preview notice

\n

createDeployment is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

autoMerged (Boolean)

True if the default branch has been auto-merged into the deployment ref.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployment (Deployment)

The new deployment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDeploymentStatus

\n

Create a deployment status.

\n
\n\n
\n \n
\n

Preview notice

\n

createDeploymentStatus is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deploymentStatus (DeploymentStatus)

The new deployment status.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateIpAllowListEntry

\n

Creates a new IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateIssue

\n

Creates a new issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The new issue.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateLabel

\n

Creates a new label.

\n
\n\n
\n \n
\n

Preview notice

\n

createLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

label (Label)

The new label.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateProject

\n

Creates a new project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The new project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreatePullRequest

\n

Create a new pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The new pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateRef

\n

Create a new Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ref (Ref)

The newly created ref.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateRepository

\n

Create a new repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The new repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateTeamDiscussion

\n

Creates a new team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussion (TeamDiscussion)

The new discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateTeamDiscussionComment

\n

Creates a new team discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussionComment (TeamDiscussionComment)

The new comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteBranchProtectionRule

\n

Delete a branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDeployment

\n

Deletes a deployment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIpAllowListEntry

\n

Deletes an IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIssue

\n

Deletes an Issue object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository the issue belonged to.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIssueComment

\n

Deletes an IssueComment object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteLabel

\n

Deletes a label.

\n
\n\n
\n \n
\n

Preview notice

\n

deleteLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePackageVersion

\n

Delete a package version.

\n
\n\n
\n \n
\n

Preview notice

\n

deletePackageVersion is available under the Access to package version deletion preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

success (Boolean)

Whether or not the operation succeeded.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProject

\n

Deletes a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (ProjectOwner)

The repository or organization the project was removed from.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectCard

\n

Deletes a project card.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

column (ProjectColumn)

The column the deleted card was in.

\n\n\n\n\n\n\n\n

deletedCardId (ID)

The deleted card ID.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectColumn

\n

Deletes a project column.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deletedColumnId (ID)

The deleted column ID.

\n\n\n\n\n\n\n\n

project (Project)

The project the deleted column was in.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePullRequestReview

\n

Deletes a pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The deleted pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePullRequestReviewComment

\n

Deletes a pull request review comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The pull request review the deleted comment belonged to.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteRef

\n

Delete a Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteTeamDiscussion

\n

Deletes a team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteTeamDiscussionComment

\n

Deletes a team discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndismissPullRequestReview

\n

Dismisses an approved or rejected pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The dismissed pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nfollowUser

\n

Follow a user.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that was followed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nimportProject

\n

Creates a new project by importing columns and a list of issues/PRs.

\n
\n\n
\n \n
\n

Preview notice

\n

importProject is available under the Import project preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The new Project!.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nlinkRepositoryToProject

\n

Creates a repository link for a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The linked Project.

\n\n\n\n\n\n\n\n

repository (Repository)

The linked Repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nlockLockable

\n

Lock a lockable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

lockedRecord (Lockable)

The item that was locked.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkFileAsViewed

\n

Mark a pull request file as viewed.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkPullRequestReadyForReview

\n

Marks a pull request ready for review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is ready for review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmergeBranch

\n

Merge a head into a branch.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

mergeCommit (Commit)

The resulting merge Commit.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmergePullRequest

\n

Merge a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was merged.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nminimizeComment

\n

Minimizes a comment on an Issue, Commit, Pull Request, or Gist.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

minimizedComment (Minimizable)

The comment that was minimized.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmoveProjectCard

\n

Moves a project card to another place.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cardEdge (ProjectCardEdge)

The new edge of the moved card.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmoveProjectColumn

\n

Moves a project column to another place.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

columnEdge (ProjectColumnEdge)

The new edge of the moved column.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \npinIssue

\n

Pin an issue to a repository.

\n
\n\n
\n \n
\n

Preview notice

\n

pinIssue is available under the Pinned issues preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was pinned.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveAssigneesFromAssignable

\n

Removes assignees from an assignable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignable (Assignable)

The item that was unassigned.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveEnterpriseAdmin

\n

Removes an administrator from the enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

admin (User)

The user who was removed as an administrator.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of removing an administrator.

\n\n\n\n\n\n\n\n

viewer (User)

The viewer performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveLabelsFromLabelable

\n

Removes labels from a Labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The Labelable the labels were removed from.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveOutsideCollaborator

\n

Removes outside collaborator from all repositories in an organization.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

removedUser (User)

The user that was removed as an outside collaborator.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveReaction

\n

Removes a reaction from a subject.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

reaction (Reaction)

The reaction object.

\n\n\n\n\n\n\n\n

subject (Reactable)

The reactable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveStar

\n

Removes a star from a Starrable.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

starrable (Starrable)

The starrable.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nreopenIssue

\n

Reopen a issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was opened.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nreopenPullRequest

\n

Reopen a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was reopened.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrequestReviews

\n

Set review requests on a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is getting requests.

\n\n\n\n\n\n\n\n

requestedReviewersEdge (UserEdge)

The edge from the pull request to the requested reviewers.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrerequestCheckSuite

\n

Rerequests an existing check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkSuite (CheckSuite)

The requested check suite.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nresolveReviewThread

\n

Marks a review thread as resolved.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The thread to resolve.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsubmitPullRequestReview

\n

Submits a pending pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The submitted pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ntransferIssue

\n

Transfer an issue to a different repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was transferred.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunarchiveRepository

\n

Unarchives a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that was unarchived.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunfollowUser

\n

Unfollow a user.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that was unfollowed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunlinkRepositoryFromProject

\n

Deletes a repository link from a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The linked Project.

\n\n\n\n\n\n\n\n

repository (Repository)

The linked Repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunlockLockable

\n

Unlock a lockable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

unlockedRecord (Lockable)

The item that was unlocked.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkFileAsViewed

\n

Unmark a pull request file as viewed.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkIssueAsDuplicate

\n

Unmark an issue as a duplicate of another issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

duplicate (IssueOrPullRequest)

The issue or pull request that was marked as a duplicate.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunminimizeComment

\n

Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

unminimizedComment (Minimizable)

The comment that was unminimized.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunpinIssue

\n

Unpin a pinned issue from a repository.

\n
\n\n
\n \n
\n

Preview notice

\n

unpinIssue is available under the Pinned issues preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was unpinned.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunresolveReviewThread

\n

Marks a review thread as unresolved.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The thread to resolve.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateBranchProtectionRule

\n

Create a new branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

The newly created BranchProtectionRule.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateCheckRun

\n

Update a check run.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkRun (CheckRun)

The updated check run.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateCheckSuitePreferences

\n

Modifies the settings of an existing check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseAllowPrivateRepositoryForkingSetting

\n

Sets whether private repository forks are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated allow private repository forking setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the allow private repository forking setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseDefaultRepositoryPermissionSetting

\n

Sets the default repository permission for organizations in an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated default repository permission setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the default repository permission setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanChangeRepositoryVisibilitySetting

\n

Sets whether organization members with admin permissions on a repository can change repository visibility.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can change repository visibility setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can change repository visibility setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanCreateRepositoriesSetting

\n

Sets the members can create repositories setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can create repositories setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can create repositories setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanDeleteIssuesSetting

\n

Sets the members can delete issues setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can delete issues setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can delete issues setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanDeleteRepositoriesSetting

\n

Sets the members can delete repositories setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can delete repositories setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can delete repositories setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanInviteCollaboratorsSetting

\n

Sets whether members can invite collaborators are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can invite collaborators setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can invite collaborators setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanMakePurchasesSetting

\n

Sets whether or not an organization admin can make purchases.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can make purchases setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can make purchases setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanUpdateProtectedBranchesSetting

\n

Sets the members can update protected branches setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can update protected branches setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can update protected branches setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanViewDependencyInsightsSetting

\n

Sets the members can view dependency insights for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can view dependency insights setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can view dependency insights setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseOrganizationProjectsSetting

\n

Sets whether organization projects are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated organization projects setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the organization projects setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseProfile

\n

Updates an enterprise's profile.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseRepositoryProjectsSetting

\n

Sets whether repository projects are enabled for a enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated repository projects setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the repository projects setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseTeamDiscussionsSetting

\n

Sets whether team discussions are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated team discussions setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the team discussions setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseTwoFactorAuthenticationRequiredSetting

\n

Sets whether two factor authentication is required for all users in an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated two factor authentication required setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the two factor authentication required setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListEnabledSetting

\n

Sets whether an IP allow list is enabled on an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (IpAllowListOwner)

The IP allow list owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListEntry

\n

Updates an IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIssue

\n

Updates an Issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIssueComment

\n

Updates an IssueComment object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issueComment (IssueComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateLabel

\n

Updates an existing label.

\n
\n\n
\n \n
\n

Preview notice

\n

updateLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

label (Label)

The updated label.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProject

\n

Updates an existing project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The updated project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectCard

\n

Updates an existing project card.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

The updated ProjectCard.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectColumn

\n

Updates an existing project column.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectColumn (ProjectColumn)

The updated project column.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequest

\n

Update a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestReview

\n

Updates the body of a pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The updated pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestReviewComment

\n

Updates a pull request review comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReviewComment (PullRequestReviewComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRef

\n

Update a Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ref (Ref)

The updated Ref.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRefs

\n

Creates, updates and/or deletes multiple refs in a repository.

\n

This mutation takes a list of RefUpdates and performs these updates\non the repository. All updates are performed atomically, meaning that\nif one of them is rejected, no other ref will be modified.

\n

RefUpdate.beforeOid specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n0000000000000000000000000000000000000000 can be used to verify that\nthe references should not exist.

\n

RefUpdate.afterOid specifies the value that the given reference\nwill point to after performing all updates. A value of\n0000000000000000000000000000000000000000 can be used to delete a\nreference.

\n

If RefUpdate.force is set to true, a non-fast-forward updates\nfor the given reference will be allowed.

\n
\n\n
\n \n
\n

Preview notice

\n

updateRefs is available under the Update refs preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRepository

\n

Update information about a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateSubscription

\n

Updates the state for subscribable subjects.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subscribable (Subscribable)

The input subscribable entity.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamDiscussion

\n

Updates a team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussion (TeamDiscussion)

The updated discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamDiscussionComment

\n

Updates a discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussionComment (TeamDiscussionComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamReviewAssignment

\n

Updates team review assignment.

\n
\n\n
\n \n
\n

Preview notice

\n

updateTeamReviewAssignment is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

team (Team)

The team that was modified.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTopics

\n

Replaces the repository's topics with the given topics.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

invalidTopicNames ([String!])

Names of the provided topics that are not valid.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n", + "miniToc": [ + { + "contents": "\n addAssigneesToAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addLabelsToLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n archiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n changeUserStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n clearLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneTemplateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closeIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertProjectCardNoteToIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createContentAttachment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeploymentStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePackageVersion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n followUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n importProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n linkRepositoryToProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n lockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markPullRequestReadyForReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergeBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n minimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n pinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeAssigneesFromAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeOutsideCollaborator", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n requestReviews", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rerequestCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n resolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n submitPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n transferIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unarchiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unfollowUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlinkRepositoryFromProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkIssueAsDuplicate", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unminimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unpinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unresolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckSuitePreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseDefaultRepositoryPermissionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanCreateRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteIssuesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanInviteCollaboratorsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanMakePurchasesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanViewDependencyInsightsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseOrganizationProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseProfile", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseRepositoryProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTeamDiscussionsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRefs", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSubscription", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamReviewAssignment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTopics", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + } + ] + }, + "ghae": { + "html": "
\n
\n

\n \n \naddAssigneesToAssignable

\n

Adds assignees to an assignable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignable (Assignable)

The item that was assigned.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddComment

\n

Adds a comment to an Issue or Pull Request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

commentEdge (IssueCommentEdge)

The edge from the subject's comment connection.

\n\n\n\n\n\n\n\n

subject (Node)

The subject.

\n\n\n\n\n\n\n\n

timelineEdge (IssueTimelineItemEdge)

The edge from the subject's timeline connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddDiscussionComment

\n

Adds a comment to a Discussion, possibly as a reply to another comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The newly created discussion comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddEnterpriseAdmin

\n

Adds an administrator to the global enterprise account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

admin (User)

The user who was added as an administrator.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n

role (EnterpriseAdministratorRole)

The role of the administrator.

\n\n\n\n\n\n\n\n

viewer (User)

The viewer performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddLabelsToLabelable

\n

Adds labels to a labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The item that was labeled.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectCard

\n

Adds a card to a ProjectColumn. Either contentId or note must be provided but not both.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cardEdge (ProjectCardEdge)

The edge from the ProjectColumn's card connection.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectColumn (ProjectColumn)

The ProjectColumn.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddProjectColumn

\n

Adds a column to a Project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

columnEdge (ProjectColumnEdge)

The edge from the project's column connection.

\n\n\n\n\n\n\n\n

project (Project)

The project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReview

\n

Adds a review to a Pull Request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The newly created pull request review.

\n\n\n\n\n\n\n\n

reviewEdge (PullRequestReviewEdge)

The edge from the pull request's review connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReviewComment

\n

Adds a comment to a review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (PullRequestReviewComment)

The newly created comment.

\n\n\n\n\n\n\n\n

commentEdge (PullRequestReviewCommentEdge)

The edge from the review's comment connection.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddPullRequestReviewThread

\n

Adds a new thread to a pending Pull Request Review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The newly created thread.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddReaction

\n

Adds a reaction to a subject.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

reaction (Reaction)

The reaction object.

\n\n\n\n\n\n\n\n

subject (Reactable)

The reactable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddStar

\n

Adds a star to a Starrable.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

starrable (Starrable)

The starrable.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \naddUpvote

\n

Add an upvote to a discussion or discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subject (Votable)

The votable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \napproveDeployments

\n

Approve all pending deployments under one or more environments.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployments ([Deployment!])

The affected deployments.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \narchiveRepository

\n

Marks a repository as archived.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that was marked as archived.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nchangeUserStatus

\n

Update your status on GitHub.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

status (UserStatus)

Your updated status.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nclearLabelsFromLabelable

\n

Clears all labels from a labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The item that was unlabeled.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloneProject

\n

Creates a new project by cloning configuration from an existing project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

jobStatusId (String)

The id of the JobStatus for populating cloned fields.

\n\n\n\n\n\n\n\n

project (Project)

The new cloned project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloneTemplateRepository

\n

Create a new repository with the same files and directory structure as a template repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The new repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncloseIssue

\n

Close an issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was closed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nclosePullRequest

\n

Close a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was closed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nconvertProjectCardNoteToIssue

\n

Convert a project note card to one associated with a newly created issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

The updated ProjectCard.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nconvertPullRequestToDraft

\n

Converts a pull request to draft.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is now a draft.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateBranchProtectionRule

\n

Create a new branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

The newly created BranchProtectionRule.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCheckRun

\n

Create a check run.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkRun (CheckRun)

The newly created check run.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCheckSuite

\n

Create a check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkSuite (CheckSuite)

The newly created check suite.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateCommitOnBranch

\n

Appends a commit to the given branch as the authenticated user.

\n

This mutation creates a commit whose parent is the HEAD of the provided\nbranch and also updates that branch to point to the new commit.\nIt can be thought of as similar to git commit.

\n

Locating a Branch

\n

Commits are appended to a branch of type Ref.\nThis must refer to a git branch (i.e. the fully qualified path must\nbegin with refs/heads/, although including this prefix is optional.

\n

Callers may specify the branch to commit to either by its global node\nID or by passing both of repositoryNameWithOwner and refName. For\nmore details see the documentation for CommittableBranch.

\n

Describing Changes

\n

fileChanges are specified as a FilesChanges object describing\nFileAdditions and FileDeletions.

\n

Please see the documentation for FileChanges for more information on\nhow to use this argument to describe any set of file changes.

\n

Authorship

\n

Similar to the web commit interface, this mutation does not support\nspecifying the author or committer of the commit and will not add\nsupport for this in the future.

\n

A commit created by a successful execution of this mutation will be\nauthored by the owner of the credential which authenticates the API\nrequest. The committer will be identical to that of commits authored\nusing the web interface.

\n

If you need full control over author and committer information, please\nuse the Git Database REST API instead.

\n

Commit Signing

\n

Commits made using this mutation are automatically signed by GitHub if\nsupported and will be marked as verified in the user interface.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

commit (Commit)

The new commit.

\n\n\n\n\n\n\n\n

ref (Ref)

The ref which has been updated to point to the new commit.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDeployment

\n

Creates a new deployment event.

\n
\n\n
\n \n
\n

Preview notice

\n

createDeployment is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

autoMerged (Boolean)

True if the default branch has been auto-merged into the deployment ref.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployment (Deployment)

The new deployment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDeploymentStatus

\n

Create a deployment status.

\n
\n\n
\n \n
\n

Preview notice

\n

createDeploymentStatus is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deploymentStatus (DeploymentStatus)

The new deployment status.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateDiscussion

\n

Create a discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that was just created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateEnterpriseOrganization

\n

Creates an organization as part of an enterprise account.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise that owns the created organization.

\n\n\n\n\n\n\n\n

organization (Organization)

The organization that was created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateEnvironment

\n

Creates an environment or simply returns it if already exists.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

environment (Environment)

The new or existing environment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateIpAllowListEntry

\n

Creates a new IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was created.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateIssue

\n

Creates a new issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The new issue.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateLabel

\n

Creates a new label.

\n
\n\n
\n \n
\n

Preview notice

\n

createLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

label (Label)

The new label.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateProject

\n

Creates a new project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The new project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreatePullRequest

\n

Create a new pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The new pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateRef

\n

Create a new Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ref (Ref)

The newly created ref.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateRepository

\n

Create a new repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The new repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateTeamDiscussion

\n

Creates a new team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussion (TeamDiscussion)

The new discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ncreateTeamDiscussionComment

\n

Creates a new team discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussionComment (TeamDiscussionComment)

The new comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteBranchProtectionRule

\n

Delete a branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDeployment

\n

Deletes a deployment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDiscussion

\n

Delete a discussion and all of its replies.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that was just deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteDiscussionComment

\n

Delete a discussion comment. If it has replies, wipe it instead.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The discussion comment that was just deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteEnvironment

\n

Deletes an environment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIpAllowListEntry

\n

Deletes an IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was deleted.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIssue

\n

Deletes an Issue object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository the issue belonged to.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteIssueComment

\n

Deletes an IssueComment object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteLabel

\n

Deletes a label.

\n
\n\n
\n \n
\n

Preview notice

\n

deleteLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProject

\n

Deletes a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (ProjectOwner)

The repository or organization the project was removed from.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectCard

\n

Deletes a project card.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

column (ProjectColumn)

The column the deleted card was in.

\n\n\n\n\n\n\n\n

deletedCardId (ID)

The deleted card ID.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteProjectColumn

\n

Deletes a project column.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deletedColumnId (ID)

The deleted column ID.

\n\n\n\n\n\n\n\n

project (Project)

The project the deleted column was in.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePullRequestReview

\n

Deletes a pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The deleted pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeletePullRequestReviewComment

\n

Deletes a pull request review comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The pull request review the deleted comment belonged to.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteRef

\n

Delete a Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteTeamDiscussion

\n

Deletes a team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndeleteTeamDiscussionComment

\n

Deletes a team discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndisablePullRequestAutoMerge

\n

Disable auto merge on the given pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request auto merge was disabled on.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndismissPullRequestReview

\n

Dismisses an approved or rejected pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The dismissed pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ndismissRepositoryVulnerabilityAlert

\n

Dismisses the Dependabot alert.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repositoryVulnerabilityAlert (RepositoryVulnerabilityAlert)

The Dependabot alert that was dismissed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nenablePullRequestAutoMerge

\n

Enable the default auto-merge on a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request auto-merge was enabled on.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nfollowUser

\n

Follow a user.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that was followed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nimportProject

\n

Creates a new project by importing columns and a list of issues/PRs.

\n
\n\n
\n \n
\n

Preview notice

\n

importProject is available under the Import project preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The new Project!.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nlinkRepositoryToProject

\n

Creates a repository link for a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The linked Project.

\n\n\n\n\n\n\n\n

repository (Repository)

The linked Repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nlockLockable

\n

Lock a lockable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

lockedRecord (Lockable)

The item that was locked.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkDiscussionCommentAsAnswer

\n

Mark a discussion comment as the chosen answer for discussions in an answerable category.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that includes the chosen comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkFileAsViewed

\n

Mark a pull request file as viewed.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmarkPullRequestReadyForReview

\n

Marks a pull request ready for review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is ready for review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmergeBranch

\n

Merge a head into a branch.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

mergeCommit (Commit)

The resulting merge Commit.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmergePullRequest

\n

Merge a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was merged.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nminimizeComment

\n

Minimizes a comment on an Issue, Commit, Pull Request, or Gist.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

minimizedComment (Minimizable)

The comment that was minimized.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmoveProjectCard

\n

Moves a project card to another place.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cardEdge (ProjectCardEdge)

The new edge of the moved card.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nmoveProjectColumn

\n

Moves a project column to another place.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

columnEdge (ProjectColumnEdge)

The new edge of the moved column.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \npinIssue

\n

Pin an issue to a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was pinned.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrejectDeployments

\n

Reject all pending deployments under one or more environments.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

deployments ([Deployment!])

The affected deployments.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveAssigneesFromAssignable

\n

Removes assignees from an assignable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignable (Assignable)

The item that was unassigned.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveEnterpriseAdmin

\n

Removes an administrator from the enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

admin (User)

The user who was removed as an administrator.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of removing an administrator.

\n\n\n\n\n\n\n\n

viewer (User)

The viewer performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveLabelsFromLabelable

\n

Removes labels from a Labelable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

labelable (Labelable)

The Labelable the labels were removed from.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveOutsideCollaborator

\n

Removes outside collaborator from all repositories in an organization.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

removedUser (User)

The user that was removed as an outside collaborator.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveReaction

\n

Removes a reaction from a subject.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

reaction (Reaction)

The reaction object.

\n\n\n\n\n\n\n\n

subject (Reactable)

The reactable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveStar

\n

Removes a star from a Starrable.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

starrable (Starrable)

The starrable.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nremoveUpvote

\n

Remove an upvote to a discussion or discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subject (Votable)

The votable subject.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nreopenIssue

\n

Reopen a issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was opened.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nreopenPullRequest

\n

Reopen a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that was reopened.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrequestReviews

\n

Set review requests on a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The pull request that is getting requests.

\n\n\n\n\n\n\n\n

requestedReviewersEdge (UserEdge)

The edge from the pull request to the requested reviewers.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nrerequestCheckSuite

\n

Rerequests an existing check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkSuite (CheckSuite)

The requested check suite.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nresolveReviewThread

\n

Marks a review thread as resolved.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The thread to resolve.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nsubmitPullRequestReview

\n

Submits a pending pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The submitted pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \ntransferIssue

\n

Transfer an issue to a different repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was transferred.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunarchiveRepository

\n

Unarchives a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The repository that was unarchived.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunfollowUser

\n

Unfollow a user.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

user (User)

The user that was unfollowed.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunlinkRepositoryFromProject

\n

Deletes a repository link from a project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The linked Project.

\n\n\n\n\n\n\n\n

repository (Repository)

The linked Repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunlockLockable

\n

Unlock a lockable object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

unlockedRecord (Lockable)

The item that was unlocked.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkDiscussionCommentAsAnswer

\n

Unmark a discussion comment as the chosen answer for discussions in an answerable category.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The discussion that includes the comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkFileAsViewed

\n

Unmark a pull request file as viewed.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunmarkIssueAsDuplicate

\n

Unmark an issue as a duplicate of another issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

duplicate (IssueOrPullRequest)

The issue or pull request that was marked as a duplicate.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunminimizeComment

\n

Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

unminimizedComment (Minimizable)

The comment that was unminimized.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunpinIssue

\n

Unpin a pinned issue from a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue that was unpinned.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nunresolveReviewThread

\n

Marks a review thread as unresolved.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

thread (PullRequestReviewThread)

The thread to resolve.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateBranchProtectionRule

\n

Create a new branch protection rule.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

The newly created BranchProtectionRule.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateCheckRun

\n

Update a check run.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

checkRun (CheckRun)

The updated check run.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateCheckSuitePreferences

\n

Modifies the settings of an existing check suite.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateDiscussion

\n

Update a discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

discussion (Discussion)

The modified discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateDiscussionComment

\n

Update the contents of a comment on a Discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

comment (DiscussionComment)

The modified discussion comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseAllowPrivateRepositoryForkingSetting

\n

Sets whether private repository forks are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated allow private repository forking setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the allow private repository forking setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseDefaultRepositoryPermissionSetting

\n

Sets the base repository permission for organizations in an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated base repository permission setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the base repository permission setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanChangeRepositoryVisibilitySetting

\n

Sets whether organization members with admin permissions on a repository can change repository visibility.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can change repository visibility setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can change repository visibility setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanCreateRepositoriesSetting

\n

Sets the members can create repositories setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can create repositories setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can create repositories setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanDeleteIssuesSetting

\n

Sets the members can delete issues setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can delete issues setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can delete issues setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanDeleteRepositoriesSetting

\n

Sets the members can delete repositories setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can delete repositories setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can delete repositories setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanInviteCollaboratorsSetting

\n

Sets whether members can invite collaborators are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can invite collaborators setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can invite collaborators setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanMakePurchasesSetting

\n

Sets whether or not an organization admin can make purchases.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can make purchases setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can make purchases setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanUpdateProtectedBranchesSetting

\n

Sets the members can update protected branches setting for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can update protected branches setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can update protected branches setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseMembersCanViewDependencyInsightsSetting

\n

Sets the members can view dependency insights for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated members can view dependency insights setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the members can view dependency insights setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseOrganizationProjectsSetting

\n

Sets whether organization projects are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated organization projects setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the organization projects setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseProfile

\n

Updates an enterprise's profile.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The updated enterprise.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseRepositoryProjectsSetting

\n

Sets whether repository projects are enabled for a enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated repository projects setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the repository projects setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseTeamDiscussionsSetting

\n

Sets whether team discussions are enabled for an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated team discussions setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the team discussions setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnterpriseTwoFactorAuthenticationRequiredSetting

\n

Sets whether two factor authentication is required for all users in an enterprise.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise with the updated two factor authentication required setting.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the two factor authentication required setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateEnvironment

\n

Updates an environment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

environment (Environment)

The updated environment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListEnabledSetting

\n

Sets whether an IP allow list is enabled on an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (IpAllowListOwner)

The IP allow list owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListEntry

\n

Updates an IP allow list entry.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ipAllowListEntry (IpAllowListEntry)

The IP allow list entry that was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIpAllowListForInstalledAppsEnabledSetting

\n

Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

owner (IpAllowListOwner)

The IP allow list owner on which the setting was updated.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIssue

\n

Updates an Issue.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issue (Issue)

The issue.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateIssueComment

\n

Updates an IssueComment object.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

issueComment (IssueComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateLabel

\n

Updates an existing label.

\n
\n\n
\n \n
\n

Preview notice

\n

updateLabel is available under the Labels preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

label (Label)

The updated label.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateOrganizationAllowPrivateRepositoryForkingSetting

\n

Sets whether private repository forks are enabled for an organization.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

message (String)

A message confirming the result of updating the allow private repository forking setting.

\n\n\n\n\n\n\n\n

organization (Organization)

The organization with the updated allow private repository forking setting.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProject

\n

Updates an existing project.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

project (Project)

The updated project.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectCard

\n

Updates an existing project card.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

The updated ProjectCard.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateProjectColumn

\n

Updates an existing project column.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

projectColumn (ProjectColumn)

The updated project column.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequest

\n

Update a pull request.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestBranch

\n

Merge HEAD from upstream branch into pull request branch.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

The updated pull request.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestReview

\n

Updates the body of a pull request review.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The updated pull request review.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdatePullRequestReviewComment

\n

Updates a pull request review comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

pullRequestReviewComment (PullRequestReviewComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRef

\n

Update a Git Ref.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

ref (Ref)

The updated Ref.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRefs

\n

Creates, updates and/or deletes multiple refs in a repository.

\n

This mutation takes a list of RefUpdates and performs these updates\non the repository. All updates are performed atomically, meaning that\nif one of them is rejected, no other ref will be modified.

\n

RefUpdate.beforeOid specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n0000000000000000000000000000000000000000 can be used to verify that\nthe references should not exist.

\n

RefUpdate.afterOid specifies the value that the given reference\nwill point to after performing all updates. A value of\n0000000000000000000000000000000000000000 can be used to delete a\nreference.

\n

If RefUpdate.force is set to true, a non-fast-forward updates\nfor the given reference will be allowed.

\n
\n\n
\n \n
\n

Preview notice

\n

updateRefs is available under the Update refs preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateRepository

\n

Update information about a repository.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateSubscription

\n

Updates the state for subscribable subjects.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

subscribable (Subscribable)

The input subscribable entity.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamDiscussion

\n

Updates a team discussion.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussion (TeamDiscussion)

The updated discussion.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamDiscussionComment

\n

Updates a discussion comment.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

teamDiscussionComment (TeamDiscussionComment)

The updated comment.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTeamReviewAssignment

\n

Updates team review assignment.

\n
\n\n
\n \n
\n

Preview notice

\n

updateTeamReviewAssignment is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

team (Team)

The team that was modified.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n\n
\n
\n

\n \n \nupdateTopics

\n

Replaces the repository's topics with the given topics.

\n
\n\n
\n \n\n \n\n \n \n

Input fields

\n\n\n\n\n\n\n\n\n \n

Return fields

\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

clientMutationId (String)

A unique identifier for the client performing the mutation.

\n\n\n\n\n\n\n\n

invalidTopicNames ([String!])

Names of the provided topics that are not valid.

\n\n\n\n\n\n\n\n

repository (Repository)

The updated repository.

\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n", + "miniToc": [ + { + "contents": "\n addAssigneesToAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addLabelsToLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n archiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n changeUserStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n clearLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneTemplateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closeIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertProjectCardNoteToIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertPullRequestToDraft", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCommitOnBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeploymentStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n disablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissRepositoryVulnerabilityAlert", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n enablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n followUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n importProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n linkRepositoryToProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n lockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markPullRequestReadyForReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergeBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n minimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n pinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rejectDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeAssigneesFromAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeOutsideCollaborator", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n requestReviews", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rerequestCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n resolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n submitPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n transferIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unarchiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unfollowUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlinkRepositoryFromProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkIssueAsDuplicate", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unminimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unpinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unresolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckSuitePreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseDefaultRepositoryPermissionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanCreateRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteIssuesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanInviteCollaboratorsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanMakePurchasesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanViewDependencyInsightsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseOrganizationProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseProfile", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseRepositoryProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTeamDiscussionsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListForInstalledAppsEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateOrganizationAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRefs", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSubscription", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamReviewAssignment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTopics", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + } + ] + } +} \ No newline at end of file diff --git a/middleware/contextualizers/graphql.js b/middleware/contextualizers/graphql.js index 01681fd634..12d1974d5e 100644 --- a/middleware/contextualizers/graphql.js +++ b/middleware/contextualizers/graphql.js @@ -9,6 +9,9 @@ const prerenderedObjects = readCompressedJsonFileFallback( const prerenderedInputObjects = readCompressedJsonFileFallback( './lib/graphql/static/prerendered-input-objects.json' ) +const prerenderedMutations = readCompressedJsonFileFallback( + './lib/graphql/static/prerendered-mutations.json' +) const explorerUrl = process.env.NODE_ENV === 'production' @@ -36,6 +39,7 @@ export default function graphqlContext(req, res, next) { upcomingChangesForCurrentVersion: upcomingChanges[graphqlVersion], prerenderedObjectsForCurrentVersion: prerenderedObjects[graphqlVersion], prerenderedInputObjectsForCurrentVersion: prerenderedInputObjects[graphqlVersion], + prerenderedMutationsForCurrentVersion: prerenderedMutations[graphqlVersion], explorerUrl, changelog, } diff --git a/middleware/render-page.js b/middleware/render-page.js index 47ac9a8bc7..b6aed876e1 100644 --- a/middleware/render-page.js +++ b/middleware/render-page.js @@ -81,6 +81,16 @@ export default async function renderPage(req, res, next) { context.renderedPage + req.context.graphql.prerenderedInputObjectsForCurrentVersion.html } + // handle special-case prerendered GraphQL mutations page + if (req.pagePath.endsWith('graphql/reference/mutations')) { + // concat the markdown source miniToc items and the prerendered miniToc items + context.miniTocItems = context.miniTocItems.concat( + req.context.graphql.prerenderedMutationsForCurrentVersion.miniToc + ) + context.renderedPage = + context.renderedPage + req.context.graphql.prerenderedMutationsForCurrentVersion.html + } + // Create string for tag context.page.fullTitle = context.page.titlePlainText diff --git a/script/graphql/update-files.js b/script/graphql/update-files.js index 39fe53e8c7..11cff55c32 100755 --- a/script/graphql/update-files.js +++ b/script/graphql/update-files.js @@ -9,8 +9,7 @@ import { allVersions } from '../../lib/all-versions.js' import processPreviews from './utils/process-previews.js' import processUpcomingChanges from './utils/process-upcoming-changes.js' import processSchemas from './utils/process-schemas.js' -import prerenderObjects from './utils/prerender-objects.js' -import prerenderInputObjects from './utils/prerender-input-objects.js' +import prerender from './utils/prerender-graphql.js' import { prependDatedEntry, createChangelogEntry } from './build-changelog.js' import loadData from '../../lib/site-data.js' @@ -36,6 +35,7 @@ async function main() { const upcomingChangesJson = {} const prerenderedObjects = {} const prerenderedInputObjects = {} + const prerenderedMutations = {} const siteData = loadData() @@ -83,11 +83,22 @@ async function main() { // 4. PRERENDER OBJECTS HTML // because the objects page is too big to render on page load - prerenderedObjects[graphqlVersion] = await prerenderObjects(context) + prerenderedObjects[graphqlVersion] = await prerender(context, 'objects', 'graphql-object.html') // 5. PRERENDER INPUT OBJECTS HTML // because the objects page is too big to render on page load - prerenderedInputObjects[graphqlVersion] = await prerenderInputObjects(context) + prerenderedInputObjects[graphqlVersion] = await prerender( + context, + 'inputObjects', + 'graphql-input-object.html' + ) + + // Prerender mutations + prerenderedMutations[graphqlVersion] = await prerender( + context, + 'mutations', + 'graphql-mutation.html' + ) // 6. UPDATE CHANGELOG if (allVersions[version].nonEnterpriseDefault) { @@ -118,6 +129,10 @@ async function main() { prerenderedInputObjects, path.join(graphqlStaticDir, 'prerendered-input-objects.json') ) + await updateStaticFile( + prerenderedMutations, + path.join(graphqlStaticDir, 'prerendered-mutations.json') + ) // Ensure the YAML linter runs before checkinging in files execSync('npx prettier -w "**/*.{yml,yaml}"') diff --git a/script/graphql/utils/prerender-graphql.js b/script/graphql/utils/prerender-graphql.js new file mode 100644 index 0000000000..965468c5b9 --- /dev/null +++ b/script/graphql/utils/prerender-graphql.js @@ -0,0 +1,30 @@ +#!/usr/bin/env node +import fs from 'fs/promises' +import path from 'path' +import cheerio from 'cheerio' +import { liquid } from '../../../lib/render-content/index.js' +import getMiniTocItems from '../../../lib/get-mini-toc-items.js' +import rewriteLocalLinks from '../../../lib/rewrite-local-links.js' +const includes = path.join(process.cwd(), 'includes') + +export default async function prerender(context, type, includeFilename) { + const htmlArray = [] + + const includeFile = await fs.readFile(path.join(includes, includeFilename), 'utf8') + // render the layout for every object + for (const item of context.graphql.schemaForCurrentVersion[type]) { + context.item = item + const itemHtml = await liquid.parseAndRender(includeFile, context) + const $ = cheerio.load(itemHtml, { xmlMode: true }) + rewriteLocalLinks($, context.currentVersion, context.currentLanguage) + const htmlWithVersionedLinks = $.html() + htmlArray.push(htmlWithVersionedLinks) + } + + const html = htmlArray.join('\n') + + return { + html: html, + miniToc: getMiniTocItems(html), + } +} From 9e21836f4d6fc155b6cb403e7aa61abaf4849904 Mon Sep 17 00:00:00 2001 From: Grace Park <gracepark@github.com> Date: Wed, 15 Dec 2021 12:34:21 -0800 Subject: [PATCH 4/6] Revert "Accessibility: Nesting headingLevel 3 mini tocs (#23663)" (#23759) This reverts commit 41c7f584379ecc0da73a158c893eda3c8454651d. --- components/article/ArticlePage.tsx | 22 +++++----------------- tests/rendering/server.js | 2 +- 2 files changed, 6 insertions(+), 18 deletions(-) diff --git a/components/article/ArticlePage.tsx b/components/article/ArticlePage.tsx index c1ac03e446..4b34b81442 100644 --- a/components/article/ArticlePage.tsx +++ b/components/article/ArticlePage.tsx @@ -1,9 +1,8 @@ import { useRouter } from 'next/router' -import { useState } from 'react' import cx from 'classnames' import { ActionList, Heading } from '@primer/components' -import { ChevronDownIcon, ZapIcon, InfoIcon, ShieldLockIcon } from '@primer/octicons-react' +import { ZapIcon, InfoIcon, ShieldLockIcon } from '@primer/octicons-react' import { Callout } from 'components/ui/Callout' import { Link } from 'components/Link' @@ -61,9 +60,8 @@ export const ArticlePage = () => { } = useArticleContext() const { t } = useTranslation('pages') const currentPath = router.asPath.split('?')[0] - const [isActive, setActive] = useState(-1) - const renderTocItem = (item: MiniTocItem, index: number) => { + const renderTocItem = (item: MiniTocItem) => { return ( <ActionList.Item as="li" @@ -72,19 +70,9 @@ export const ArticlePage = () => { sx={{ listStyle: 'none', padding: '2px' }} > <div className={cx('lh-condensed d-block width-full')}> - <div className="d-inline-flex" dangerouslySetInnerHTML={{ __html: item.contents }} /> - {item.items && item.items.length > 0 && ( - <button - className="color-bg-default border-0 ml-1" - onClick={() => setActive(index === isActive ? -1 : index)} - > - {<ChevronDownIcon />} - </button> - )} + <div dangerouslySetInnerHTML={{ __html: item.contents }} /> {item.items && item.items.length > 0 ? ( - <ul className={index === isActive ? 'ml-3' : 'd-none'}> - {item.items.map(renderTocItem)} - </ul> + <ul className="ml-3">{item.items.map(renderTocItem)}</ul> ) : null} </div> </ActionList.Item> @@ -158,7 +146,7 @@ export const ArticlePage = () => { return { key: title + i, text: title, - renderItem: () => <ul>{renderTocItem(items, i)}</ul>, + renderItem: () => <ul>{renderTocItem(items)}</ul>, } })} /> diff --git a/tests/rendering/server.js b/tests/rendering/server.js index b216a77695..90cb392787 100644 --- a/tests/rendering/server.js +++ b/tests/rendering/server.js @@ -344,7 +344,7 @@ describe('server', () => { ) expect($('h2#in-this-article').length).toBe(1) expect($('h2#in-this-article + div div ul').length).toBeGreaterThan(0) // non-indented items - expect($('h2#in-this-article + div div ul li div div div ul li').length).toBeGreaterThan(0) // indented items + expect($('h2#in-this-article + div div ul li div div div ul.ml-3').length).toBeGreaterThan(0) // indented items }) test('does not render mini TOC in articles with only one heading', async () => { From d9592d0aa5b956a7b7b8d3cb3da969eabf326e04 Mon Sep 17 00:00:00 2001 From: Kelly Arwine <kellyarwine@github.com> Date: Wed, 15 Dec 2021 14:37:31 -0600 Subject: [PATCH 5/6] Empty commit (#23756) From 74ed3444769541df4251f62ad299bf831236d088 Mon Sep 17 00:00:00 2001 From: Mike McDonald <2575327+asciimike@users.noreply.github.com> Date: Wed, 15 Dec 2021 13:41:30 -0700 Subject: [PATCH 6/6] [Dec 15] Adding information on codespaces external collaborators (#23649) * Adding information on external collaborators * Adding link to external collab info * Note spacing * s/external/outside * Update content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md Co-authored-by: jmarlena <6732600+jmarlena@users.noreply.github.com> * s/external/outside 2.0 * Updating screenshot Co-authored-by: jmarlena <6732600+jmarlena@users.noreply.github.com> --- ...ermission-settings-outside-collaborators.png | Bin 0 -> 58143 bytes ...enabling-codespaces-for-your-organization.md | 13 +++++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 assets/images/help/codespaces/org-user-permission-settings-outside-collaborators.png diff --git a/assets/images/help/codespaces/org-user-permission-settings-outside-collaborators.png b/assets/images/help/codespaces/org-user-permission-settings-outside-collaborators.png new file mode 100644 index 0000000000000000000000000000000000000000..9549da52097f058cbb7f498bc27ad960e6d61708 GIT binary patch literal 58143 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 literal 0 HcmV?d00001 diff --git a/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md b/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md index f534a02538..7e68cd8fd1 100644 --- a/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md +++ b/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md @@ -37,10 +37,19 @@ By default, a codespace can only access the repository from which it was created {% data reusables.organizations.click-codespaces %} 1. Under "User permissions", select one of the following options: - * **Allow for all users** to allow all your organization members to use {% data variables.product.prodname_codespaces %}. * **Selected users** to select specific organization members to use {% data variables.product.prodname_codespaces %}. + * **Allow for all members** to allow all your organization members to use {% data variables.product.prodname_codespaces %}. + * **Allow for all members and outside collaborators** to allow all your organization members as well as outside collaborators to use {% data variables.product.prodname_codespaces %}. - ![Radio buttons for "User permissions"](/assets/images/help/codespaces/organization-user-permission-settings.png) + ![Radio buttons for "User permissions"](/assets/images/help/codespaces/org-user-permission-settings-outside-collaborators.png) + + {% note %} + + **Note:** When you select **Allow for all members and outside collaborators**, all outside collaborators who have been added to specific repositories can create and use {% data variables.product.prodname_codespaces %}. Your organization will be billed for all usage incurred by outside collaborators. For more information on managing outside collaborators, see "[About outside collaborators](/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization#about-outside-collaborators)." + + {% endnote %} + +1. Click **Save**. ## Disabling {% data variables.product.prodname_codespaces %} for your organization